search for: oldusercheck

Displaying 1 result from an estimated 1 matches for "oldusercheck".

2011 Feb 14
0
Devise is causing the [The change you wanted was rejected.] Error...
...9;s password to the devise_encryption(params[:user][:password]) which just passed in with Devise password. Below is the custom devise controller that I am using. The custom controller looks like this def create resource = warden.authenticate!(:scope => resource_name, :recall => "oldusercheck") #calling oldusercheck helper function set_flash_message(:notice, :signed_in) sign_in_and_redirect(resource_name, resource) end def oldusercheck @user = User.find_by_email(params[:user][:email]) if @user.nil? set_flash_message(:alert, :invalid) redirect_to :ac...