Class: Jinda::PasswordResetsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/jindra_engine/password_resets.rb,
app/controllers/jindra_engine/password_resets_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



4
5
6
7
8
9
10
# File 'app/controllers/jindra_engine/password_resets.rb', line 4

def create
  ##user = User.find_by_email(params[:email])
  user = User.where(:email => params[:email]).first

  user.send_password_reset if user
  redirect_to root_url, :notice => "Email sent with password reset instructions."
end

#editObject



12
13
14
15
# File 'app/controllers/jindra_engine/password_resets.rb', line 12

def edit
  ##@user = User.find_by_password_reset_token!(params[:id])
  @user = User.where(:password_reset_token => params[:id]).first
end

#indexObject



4
5
# File 'app/controllers/jindra_engine/password_resets_controller.rb', line 4

def index
end

#updateObject



17
18
19
20
21
22
23
24
25
26
27
# File 'app/controllers/jindra_engine/password_resets.rb', line 17

def update
  ##@user = User.find_by_password_reset_token!(params[:id])
  @user = User.where(:password_reset_token => params[:id]).first
  if @user.password_reset_sent_at < 2.hours.ago
    redirect_to new_password_reset_path, :alert => "Password reset has expired."
  elsif @user.update_attributes(params[:user])
    redirect_to root_url, :notice => "Password has been reset!"
  else
    render :edit
  end
end