Class: PasswordsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- PasswordsController
- Includes:
- Devise::Controllers::InternalHelpers
- Defined in:
- app/controllers/passwords_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
POST /resource/password.
-
#edit ⇒ Object
GET /resource/password/edit?reset_password_token=abcdef.
-
#new ⇒ Object
GET /resource/password/new.
-
#update ⇒ Object
PUT /resource/password.
Methods included from Devise::Controllers::InternalHelpers
#devise_controller?, #devise_mapping, included, #resource, #resource_class, #resource_name
Instance Method Details
#create ⇒ Object
POST /resource/password
13 14 15 16 17 18 19 20 21 22 |
# File 'app/controllers/passwords_controller.rb', line 13 def create self.resource = resource_class.send_reset_password_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 |
#edit ⇒ Object
GET /resource/password/edit?reset_password_token=abcdef
25 26 27 28 29 |
# File 'app/controllers/passwords_controller.rb', line 25 def edit self.resource = resource_class.new resource.reset_password_token = params[:reset_password_token] render_with_scope :edit end |
#new ⇒ Object
GET /resource/password/new
7 8 9 10 |
# File 'app/controllers/passwords_controller.rb', line 7 def new build_resource render_with_scope :new end |
#update ⇒ Object
PUT /resource/password
32 33 34 35 36 37 38 39 40 41 |
# File 'app/controllers/passwords_controller.rb', line 32 def update self.resource = resource_class.reset_password!(params[resource_name]) if resource.errors.empty? :notice, :updated sign_in_and_redirect(resource_name, resource) else render_with_scope :edit end end |