Module: Authlogic::Session::Perishability

Included in:
Base
Defined in:
lib/authlogic/session/perishability.rb

Overview

Perishability

Maintains the perishable token, which is helpful for confirming records or authorizing records to reset their password. All that this module does is reset it after a session have been saved, just keep it changing. The more it changes, the tighter the security.

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



8
9
10
# File 'lib/authlogic/session/perishability.rb', line 8

def self.included(klass)
  klass.after_save :reset_perishable_token!
end