Class: BlueLightSpecial::PasswordsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- BlueLightSpecial::PasswordsController
- Defined in:
- app/controllers/blue_light_special/passwords_controller.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 |
# File 'app/controllers/blue_light_special/passwords_controller.rb', line 13 def create if user = ::User.find_by_email(params[:password][:email]) user.forgot_password! Delayed::Job.enqueue DeliverChangePasswordJob.new(user) flash_notice_after_create redirect_to(url_after_create) else flash_failure_after_create render :template => 'passwords/new' end end |
#edit ⇒ Object
25 26 27 28 29 |
# File 'app/controllers/blue_light_special/passwords_controller.rb', line 25 def edit @user = ::User.find_by_id_and_password_reset_token( params[:user_id], params[:token]) render :template => 'passwords/edit' end |
#new ⇒ Object
9 10 11 |
# File 'app/controllers/blue_light_special/passwords_controller.rb', line 9 def new render :template => 'passwords/new' end |
#update ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'app/controllers/blue_light_special/passwords_controller.rb', line 31 def update @user = ::User.find_by_id_and_password_reset_token( params[:user_id], params[:token]) if @user.update_password(params[:user][:password], params[:user][:password_confirmation]) sign_in(@user) flash_success_after_update redirect_to(url_after_update) else render :template => 'passwords/edit' end end |