Sha256: 18d5a1f462884ab606bb2d10905b9ba7074327a6530b121b90bbee3c24f9bb68

Contents?: true

Size: 803 Bytes

Versions: 5

Compression:

Stored size: 803 Bytes

Contents

class EmailVerificationsController < ApplicationController
  before_action :set_<%= singular_table_name %>, only: :edit

  def edit
    @<%= singular_table_name %>.update! verified: true
    redirect_to root_path, notice: "Thank you for verifying your email address"
  end

  def create
    IdentityMailer.with(<%= singular_table_name %>: Current.<%= singular_table_name %>).email_verify_confirmation.deliver_later
    redirect_to root_path, notice: "We sent a verification email to your email address"
  end

  private
    def set_<%= singular_table_name %>
      @<%= singular_table_name %> = <%= class_name %>.where(email: params[:email]).find_signed!(params[:token], purpose: params[:email])
    rescue
      redirect_to edit_email_path, alert: "That email verification link is invalid"
    end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
authentication-zero-2.3.1 lib/generators/authentication/templates/controllers/html/email_verifications_controller.rb.tt
authentication-zero-2.3.0 lib/generators/authentication/templates/controllers/html/email_verifications_controller.rb.tt
authentication-zero-2.2.10 lib/generators/authentication/templates/controllers/html/email_verifications_controller.rb.tt
authentication-zero-2.2.9 lib/generators/authentication/templates/controllers/html/email_verifications_controller.rb.tt
authentication-zero-2.2.8 lib/generators/authentication/templates/controllers/html/email_verifications_controller.rb.tt