Class: Clearance::PasswordsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/clearance/passwords_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



12
13
14
15
16
17
18
19
20
21
# 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
    render :template => 'passwords/create'
  else
    flash_failure_after_create
    render :template => 'passwords/new'
  end
end

#editObject



23
24
25
26
27
# File 'app/controllers/clearance/passwords_controller.rb', line 23

def edit
  @user = ::User.find_by_id_and_confirmation_token(
                 params[:user_id], params[:token])
  render :template => 'passwords/edit'
end

#newObject



8
9
10
# File 'app/controllers/clearance/passwords_controller.rb', line 8

def new
  render :template => 'passwords/new'
end

#updateObject



29
30
31
32
33
34
35
36
37
38
39
40
# File 'app/controllers/clearance/passwords_controller.rb', line 29

def update
  @user = ::User.find_by_id_and_confirmation_token(
                 params[:user_id], params[:token])

  if @user.update_password(params[:user][:password])
    (@user)
    redirect_to(url_after_update)
  else
    flash_failure_after_update
    render :template => 'passwords/edit'
  end
end