Class: UnlocksController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- UnlocksController
- Includes:
- Devise::Controllers::InternalHelpers
- Defined in:
- app/controllers/unlocks_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
POST /resource/unlock.
-
#new ⇒ Object
GET /resource/unlock/new.
-
#show ⇒ Object
GET /resource/unlock?unlock_token=abcdef.
Methods included from Devise::Controllers::InternalHelpers
#devise_controller?, #devise_mapping, included, #resource, #resource_class, #resource_name
Instance Method Details
#create ⇒ Object
POST /resource/unlock
11 12 13 14 15 16 17 18 19 20 |
# File 'app/controllers/unlocks_controller.rb', line 11 def create self.resource = resource_class.send_unlock_instructions(params[resource_name]) if resource.errors.empty? :notice, :send_instructions redirect_to new_session_path(resource_name) else render_with_scope :new end end |
#new ⇒ Object
GET /resource/unlock/new
5 6 7 8 |
# File 'app/controllers/unlocks_controller.rb', line 5 def new build_resource render_with_scope :new end |
#show ⇒ Object
GET /resource/unlock?unlock_token=abcdef
23 24 25 26 27 28 29 30 31 32 |
# File 'app/controllers/unlocks_controller.rb', line 23 def show self.resource = resource_class.unlock!(:unlock_token => params[:unlock_token]) if resource.errors.empty? :notice, :unlocked sign_in_and_redirect(resource_name, resource) else render_with_scope :new end end |