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
12 13 14 15 16 17 18 19 20 21 |
# File 'app/controllers/passwords_controller.rb', line 12 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
24 25 26 27 28 |
# File 'app/controllers/passwords_controller.rb', line 24 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
6 7 8 9 |
# File 'app/controllers/passwords_controller.rb', line 6 def new build_resource render_with_scope :new end |
#update ⇒ Object
PUT /resource/password
31 32 33 34 35 36 37 38 39 40 |
# File 'app/controllers/passwords_controller.rb', line 31 def update self.resource = resource_class.reset_password_by_token(params[resource_name]) if resource.errors.empty? :notice, :updated sign_in_and_redirect(resource_name, resource) else render_with_scope :edit end end |