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