module Authlogic::ActsAsAuthentic::MagicColumns
Magic columns are like ActiveRecord's created_at and updated_at columns. They are “magically” maintained for you. Authlogic
has the same thing, but these are maintained on the session side. Please see “Magic Columns” in `Session::Base` for more details. This module merely adds validations for the magic columns if they exist.
Public Class Methods
included(klass)
click to toggle source
# File lib/authlogic/acts_as_authentic/magic_columns.rb, line 11 def self.included(klass) klass.class_eval do add_acts_as_authentic_module(Methods) end end