This allows is to go back to hashing passwords when the user is saved.
Fixes #4474
render :action => "new"
elsif current_user.auth_provider.present?
# Verify external authenticator before moving on
render :action => "new"
elsif current_user.auth_provider.present?
# Verify external authenticator before moving on
- session[:new_user] = current_user.attributes.slice("email", "display_name", "pass_crypt")
+ session[:new_user] = current_user.slice("email", "display_name", "pass_crypt", "pass_crypt_confirmation")
redirect_to auth_url(current_user.auth_provider, current_user.auth_uid), :status => :temporary_redirect
else
# Save the user record
redirect_to auth_url(current_user.auth_provider, current_user.auth_uid), :status => :temporary_redirect
else
# Save the user record
- session[:new_user] = current_user.attributes.slice("email", "display_name", "pass_crypt")
+ session[:new_user] = current_user.slice("email", "display_name", "pass_crypt", "pass_crypt_confirmation")
redirect_to :action => :terms
end
end
redirect_to :action => :terms
end
end
alias_attribute :created_at, :creation_time
alias_attribute :created_at, :creation_time
- after_initialize :encrypt_password
before_save :encrypt_password
before_save :update_tile
after_save :spam_check
before_save :encrypt_password
before_save :update_tile
after_save :spam_check