Class: Devise::PasswordsController
- Inherits:
-
DeviseController
- Object
- DeviseController
- Devise::PasswordsController
- Defined in:
- app/controllers/devise/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 inherited from DeviseController
#_prefixes, #devise_mapping, #resource, #resource_class, #resource_name, #resource_params, #signed_in_resource
Instance Method Details
#create ⇒ Object
POST /resource/password
10 11 12 13 14 15 16 17 18 |
# File 'app/controllers/devise/passwords_controller.rb', line 10 def create self.resource = resource_class.send_reset_password_instructions(resource_params) if successfully_sent?(resource) respond_with({}, :location => after_sending_reset_password_instructions_path_for(resource_name)) else respond_with(resource) end end |
#edit ⇒ Object
GET /resource/password/edit?reset_password_token=abcdef
21 22 23 24 |
# File 'app/controllers/devise/passwords_controller.rb', line 21 def edit self.resource = resource_class.new resource.reset_password_token = params[:reset_password_token] end |
#new ⇒ Object
GET /resource/password/new
5 6 7 |
# File 'app/controllers/devise/passwords_controller.rb', line 5 def new build_resource({}) end |
#update ⇒ Object
PUT /resource/password
27 28 29 30 31 32 33 34 35 36 37 38 |
# File 'app/controllers/devise/passwords_controller.rb', line 27 def update self.resource = resource_class.reset_password_by_token(resource_params) if resource.errors.empty? = resource.active_for_authentication? ? :updated : :updated_not_active (:notice, ) if sign_in(resource_name, resource) respond_with resource, :location => after_sign_in_path_for(resource) else respond_with resource end end |