Class: Devise::ConfirmationsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- Devise::ConfirmationsController
- Includes:
- Devise::Controllers::InternalHelpers
- Defined in:
- app/controllers/devise/confirmations_controller.rb
Constant Summary
Constants included from Devise::Controllers::SharedHelpers
Devise::Controllers::SharedHelpers::MIME_REFERENCES
Instance Method Summary collapse
-
#create ⇒ Object
POST /resource/confirmation.
-
#new ⇒ Object
GET /resource/confirmation/new.
-
#show ⇒ Object
GET /resource/confirmation?confirmation_token=abcdef.
Methods included from Devise::Controllers::InternalHelpers
#devise_controller?, #devise_mapping, #resource, #resource_class, #resource_name, #signed_in_resource
Instance Method Details
#create ⇒ Object
POST /resource/confirmation
11 12 13 14 15 16 17 18 19 |
# File 'app/controllers/devise/confirmations_controller.rb', line 11 def create self.resource = resource_class.send_confirmation_instructions(params[resource_name]) if successfully_sent?(resource) respond_with({}, :location => after_resending_confirmation_instructions_path_for(resource_name)) else (resource){ render_with_scope :new } end end |
#new ⇒ Object
GET /resource/confirmation/new
5 6 7 8 |
# File 'app/controllers/devise/confirmations_controller.rb', line 5 def new build_resource({}) render_with_scope :new end |
#show ⇒ Object
GET /resource/confirmation?confirmation_token=abcdef
22 23 24 25 26 27 28 29 30 31 32 |
# File 'app/controllers/devise/confirmations_controller.rb', line 22 def show self.resource = resource_class.confirm_by_token(params[:confirmation_token]) if resource.errors.empty? (:notice, :confirmed) if sign_in(resource_name, resource) (resource){ redirect_to after_confirmation_path_for(resource_name, resource) } else (resource.errors, :status => :unprocessable_entity){ render_with_scope :new } end end |