1
0
Fork 0
mirror of https://github.com/heartcombo/devise.git synced 2022-11-09 12:18:31 -05:00
heartcombo--devise/app/controllers/confirmations_controller.rb
2010-01-13 18:12:13 +01:00

22 lines
579 B
Ruby

class ConfirmationsController < ApplicationController
include Devise::Controllers::InternalHelpers
include Devise::Controllers::Common
# GET /resource/confirmation?confirmation_token=abcdef
def show
self.resource = resource_class.confirm!(:confirmation_token => params[:confirmation_token])
if resource.errors.empty?
set_flash_message :success, :confirmed
sign_in_and_redirect(resource_name, resource)
else
render_with_scope :new
end
end
protected
def send_instructions_with
:send_confirmation_instructions
end
end