Module: Devision::Models::Recoverable::ClassMethods
- Defined in:
- lib/devision/models/recoverable.rb
Instance Method Summary collapse
-
#reset_password_by_token(attributes = {}) ⇒ Object
Attempt to find a user by its reset_password_token to reset its password.
-
#send_reset_password_instructions(attributes = {}) ⇒ Object
Attempt to find a user by its email.
Instance Method Details
#reset_password_by_token(attributes = {}) ⇒ Object
Attempt to find a user by its reset_password_token to reset its password. If a user is found and token is still valid, reset its password and automatically try saving the record. If not user is found, returns a new user containing an error in reset_password_token attribute. Attributes must contain reset_password_token, password and confirmation
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 |
# File 'lib/devision/models/recoverable.rb', line 115 def reset_password_by_token(attributes={}) original_token = attributes[:reset_password_token] reset_password_token = Devision.token_generator.digest(self, :reset_password_token, original_token) recoverable = find_or_initialize_with_errors(:reset_password_token, reset_password_token) if recoverable.persisted? if recoverable.reset_password_period_valid? recoverable.reset_password!(attributes[:password], attributes[:password_confirmation]) else recoverable.errors.add(:reset_password_token, :expired) end end recoverable.reset_password_token = original_token recoverable end |
#send_reset_password_instructions(attributes = {}) ⇒ Object
Attempt to find a user by its email. If a record is found, send new password instructions to it. If user is not found, returns a new user with an email not found error. Attributes must contain the user’s email
104 105 106 107 108 |
# File 'lib/devision/models/recoverable.rb', line 104 def send_reset_password_instructions(attributes={}) recoverable = find_or_initialize_with_errors(reset_password_keys, attributes, :not_found) recoverable.send_reset_password_instructions if recoverable.persisted? recoverable end |