Class: Clearance::ConfirmationsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/clearance/confirmations_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



13
14
15
16
17
18
19
20
# File 'app/controllers/clearance/confirmations_controller.rb', line 13

def create
  @user = ::User.find_by_id_and_token(params[:user_id], params[:token])
  @user.confirm_email!

  sign_user_in(@user)
  flash[:success] = "Confirmed email and signed in."
  redirect_to url_after_create
end

#newObject



9
10
11
# File 'app/controllers/clearance/confirmations_controller.rb', line 9

def new
  create
end