Module: Sorcery::Model::Submodules::UserActivation::ClassMethods
- Defined in:
- lib/sorcery/model/submodules/user_activation.rb
Instance Method Summary collapse
-
#load_from_activation_token(token, &block) ⇒ Object
Find user by token, also checks for expiration.
Instance Method Details
#load_from_activation_token(token, &block) ⇒ Object
Find user by token, also checks for expiration. Returns the user if token found and is valid.
62 63 64 65 66 67 68 69 |
# File 'lib/sorcery/model/submodules/user_activation.rb', line 62 def load_from_activation_token(token, &block) load_from_token( token, @sorcery_config.activation_token_attribute_name, @sorcery_config.activation_token_expires_at_attribute_name, &block ) end |