Sha256: 2013b6039a9fdb83be110b5fbad540232dbdea0961e42bb23ce97404fd52e602

Contents?: true

Size: 903 Bytes

Versions: 1

Compression:

Stored size: 903 Bytes

Contents

class Identity::EmailVerificationsController < ApplicationController
  skip_before_action :authenticate, only: :edit

  before_action :set_user, only: :edit

  def edit
    @user.update!(verified: true); head(:no_content)
  end

  def create
    UserMailer.with(user: Current.user).email_verification.deliver_later
  end

  private
    def set_user
    <%- if code_verifiable? -%>
      verified_user = User.find_by(email: params[:email])

      if verified_user && verified_user.verification_code.value == params[:token]
        @user = verified_user
      else
        render json: { error: "That email verification code is invalid" }, status: :bad_request
      end
    <%- else -%>
      @token = EmailVerificationToken.find_signed!(params[:sid]); @user = @token.user
    rescue
      render json: { error: "That email verification link is invalid" }, status: :bad_request
    <%- end -%>
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
authentication-zero-2.16.1 lib/generators/authentication/templates/controllers/api/identity/email_verifications_controller.rb.tt