Module Authlogic::Session::MagicColumns
In: lib/authlogic/session/magic_columns.rb

Just like ActiveRecord has "magic" columns, such as: created_at and updated_at. Authlogic has its own "magic" columns too:

  • login_count - Increased every time an explicit login is made. This will NOT increase if logging in by a session, cookie, or basic http auth
  • failed_login_count - This increases for each consecutive failed login. See Authlogic::Session::BruteForceProtection and the consecutive_failed_logins_limit config option for more details.
  • last_request_at - Updates every time the user logs in, either by explicitly logging in, or logging in by cookie, session, or http auth
  • current_login_at - Updates with the current time when an explicit login is made.
  • last_login_at - Updates with the value of current_login_at before it is reset.
  • current_login_ip - Updates with the request ip when an explicit login is made.
  • last_login_ip - Updates with the value of current_login_ip before it is reset.

Methods

included  

Included Modules

InstanceMethods

Classes and Modules

Module Authlogic::Session::MagicColumns::Config
Module Authlogic::Session::MagicColumns::InstanceMethods

Public Class methods

[Validate]