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 24 25 26 27 |
# 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! if BlueLightSpecial.configuration.use_delayed_job Delayed::Job.enqueue DeliverChangePasswordJob.new(user) else BlueLightSpecialMailer.deliver_change_password(user) end flash_notice_after_create redirect_to(url_after_create) else flash_failure_after_create render :template => 'passwords/new' end end |
#edit ⇒ Object
29 30 31 32 33 |
# File 'app/controllers/blue_light_special/passwords_controller.rb', line 29 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
35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'app/controllers/blue_light_special/passwords_controller.rb', line 35 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 |