Module: AuthlogicConnect::Common::User

Defined in:
lib/authlogic_connect/common/user.rb

Overview

This class is the main api for the user. It is also required to properly sequence the save methods for the different authentication types (oauth and openid)

Defined Under Namespace

Modules: InstanceMethods

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



6
7
8
9
10
11
# File 'lib/authlogic_connect/common/user.rb', line 6

def self.included(base)
  base.class_eval do
    add_acts_as_authentic_module(InstanceMethods, :append)
    add_acts_as_authentic_module(AuthlogicConnect::Common::Variables, :prepend)
  end
end