Sha256: 0402f530bc96e726855d8a94d56be3543bc964bfd57275f0c9068942142dfb57
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
class PasswordResetsController < ApplicationController before_filter :load_user_using_perishable_token, :only => [:edit, :update] skip_before_filter :require_user def new end def edit end def update @user.password = params[:user][:password] @user.password_confirmation = params[:user][:password_confirmation] if @user.save flash[:notice] = "Password successfully updated" redirect_to account_url else render :action => :edit end end 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 private def load_user_using_perishable_token @user = User.find_using_perishable_token(params[:id]) unless @user flash[:notice] = "We're sorry, but we could not locate your account." + "If you are having issues try copying and pasting the URL " + "from your email into your browser or restarting the " + "reset password process." redirect_to root_url end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
qcore-1.2.0 | app/controllers/password_resets_controller.rb |