Module: Authlogic::ActsAsAuthentic::SingleAccessToken

Included in:
ActiveRecord::Base
Defined in:
lib/authlogic/acts_as_authentic/single_access_token.rb

Overview

This module is responsible for maintaining the single_access token. For more information the single access token and how to use it, see the Authlogic::Session::Params module.

Defined Under Namespace

Modules: Config, Methods

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



6
7
8
9
10
11
# File 'lib/authlogic/acts_as_authentic/single_access_token.rb', line 6

def self.included(klass)
  klass.class_eval do
    extend Config
    add_acts_as_authentic_module(Methods)
  end
end