Module: Authentication::Logic::ActsAsAuthentic::PerishableToken::Methods::InstanceMethods
- Defined in:
- lib/auth/logic/acts_as_authentic/perishable_token.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#disable_perishable_token_maintenance? ⇒ Boolean
A convenience method based on the disable_perishable_token_maintenance configuration option.
-
#reset_perishable_token ⇒ Object
Resets the perishable token to a random friendly token.
-
#reset_perishable_token! ⇒ Object
Same as reset_perishable_token, but then saves the record afterwards.
Instance Method Details
#disable_perishable_token_maintenance? ⇒ Boolean
A convenience method based on the disable_perishable_token_maintenance configuration option.
117 118 119 |
# File 'lib/auth/logic/acts_as_authentic/perishable_token.rb', line 117 def disable_perishable_token_maintenance? self.class.disable_perishable_token_maintenance == true end |
#reset_perishable_token ⇒ Object
Resets the perishable token to a random friendly token.
105 106 107 |
# File 'lib/auth/logic/acts_as_authentic/perishable_token.rb', line 105 def reset_perishable_token self.perishable_token = Random.friendly_token end |
#reset_perishable_token! ⇒ Object
Same as reset_perishable_token, but then saves the record afterwards.
110 111 112 113 |
# File 'lib/auth/logic/acts_as_authentic/perishable_token.rb', line 110 def reset_perishable_token! reset_perishable_token save_without_session_maintenance(validate: false) end |