Sha256: 7d105c1a09d3295c7d81784f0a1ce6530e4dc2932e9393e4c142292f8514a8e9
Contents?: true
Size: 773 Bytes
Versions: 1
Compression:
Stored size: 773 Bytes
Contents
# :namespace module Tokens # Lets the user to change their password without knowing the old one. class PasswordReset < OneTime # Decent compromise between convenience and security. self.expires_after = 3.days # Blanks the user's old password, so the new password form won't ask for it. # # Returns the token instance. def spend self.transaction do if credential = password_credential credential.destroy end super end end # The credential that is removed by this token. # # This method might return nil if a user initiates password recovery multiple # times. def password_credential user.credentials.find { |c| c.is_a? Credentials::Password } end end # class Tokens::PasswordReset end # namespace Tokens
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
authpwn_rails-0.12.1 | app/models/tokens/password_reset.rb |