Sha256: c3c22d42662d5860ad4aa2a4e3102f87806d8d708b4cf100676d8170aaf64abe
Contents?: true
Size: 854 Bytes
Versions: 10
Compression:
Stored size: 854 Bytes
Contents
class EmailVerificationsController < ApplicationController skip_before_action :authenticate, only: :edit 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
10 entries across 10 versions & 1 rubygems