Class: PasswordsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- PasswordsController
- Includes:
- Devise::Controllers::Helpers
- Defined in:
- app/controllers/passwords_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
POST /resource/password.
-
#edit ⇒ Object
GET /resource/password/edit?perishable_token=abcdef.
-
#new ⇒ Object
GET /resource/password/new.
-
#update ⇒ Object
PUT /resource/password.
Methods included from Devise::Controllers::Helpers
#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? :success, :send_instructions redirect_to new_session_path(resource_name) else render :new end end |
#edit ⇒ Object
GET /resource/password/edit?perishable_token=abcdef
24 25 26 27 |
# File 'app/controllers/passwords_controller.rb', line 24 def edit self.resource = resource_class.new resource.reset_password_token = params[:reset_password_token] end |
#new ⇒ Object
GET /resource/password/new
7 8 9 |
# File 'app/controllers/passwords_controller.rb', line 7 def new build_resource end |
#update ⇒ Object
PUT /resource/password
30 31 32 33 34 35 36 37 38 39 40 |
# File 'app/controllers/passwords_controller.rb', line 30 def update self.resource = resource_class.reset_password!(params[resource_name]) if resource.errors.empty? sign_in(resource_name, resource) :success, :updated redirect_to home_or_root_path else render :edit end end |