Class: Users::PasswordResetsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
lib/metajp/templates/controllers/users/password_resets_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



9
10
11
12
13
14
15
16
17
18
19
# File 'lib/metajp/templates/controllers/users/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 root_url  
  else  
    flash[:notice] = "No user was found with that email address"  
    render :action => :new  
  end  
end

#editObject



21
22
23
# File 'lib/metajp/templates/controllers/users/password_resets_controller.rb', line 21

def edit  
  render  
end

#newObject



5
6
7
# File 'lib/metajp/templates/controllers/users/password_resets_controller.rb', line 5

def new  
  render  
end

#updateObject



25
26
27
28
29
30
31
32
33
34
35
# File 'lib/metajp/templates/controllers/users/password_resets_controller.rb', line 25

def update  
  @user.password = params[:user][:password]  
  @user.password_confirmation = params[:user][:password_confirmation]  
  if @user.save  
    @user.reset_perishable_token!
    flash[:notice] = "Password successfully updated"  
    redirect_to  
  else  
    render :action => :edit  
  end  
end