Class: PasswordResetsController
Instance Attribute Summary
#formats
Instance Method Summary
collapse
included
clear_respond_to, inherit_resources, respond_to, #respond_to, #respond_with, #responder
Instance Method Details
#create ⇒ Object
9
10
11
12
13
14
15
16
17
18
19
|
# File 'lib/app/controllers/password_resets_controller.rb', line 9
def create
@user = User.find_by_email(params[:email])
if @user
@user.deliver_password_reset_instructions!
flash[:notice] = "Instructions to reset your password have been emailed to you. Please check your email."
redirect_to login_url
else
flash[:notice] = "No user was found with that email address."
render :action => :new
end
end
|
#new ⇒ Object
5
6
7
|
# File 'lib/app/controllers/password_resets_controller.rb', line 5
def new
render
end
|
#show ⇒ Object
21
22
23
|
# File 'lib/app/controllers/password_resets_controller.rb', line 21
def show
render :action => :edit
end
|
#update ⇒ Object
25
26
27
28
29
30
31
32
33
34
|
# File 'lib/app/controllers/password_resets_controller.rb', line 25
def update
@user.password = params[:user][:password]
@user.password_confirmation = params[:user][:password_confirmation]
if @user.save
flash[:notice] = "Password successfully updated"
redirect_to my_account_url
else
render :action => :edit
end
end
|