class Object

Public Instance Methods

update() click to toggle source
Calls superclass method
# File lib/identity/admin/user.rb, line 64
def update
  if params[:identity_user][:password].blank? && params[:identity_user][:password_confirmation].blank?
    params[:identity_user].delete("password")
    params[:identity_user].delete("password_confirmation")
  end
  super
end