Sha256: cdc6c70020dde436ff5ea1b919d991f0189729e89b9554d33e09bfe57e6e48bc

Contents?: true

Size: 529 Bytes

Versions: 1

Compression:

Stored size: 529 Bytes

Contents

module Authlogic
  module Session
    # = Session
    #
    # Handles all parts of authentication that deal with sessions. Such as persisting a session and saving / destroy a session.
    module OpenID
      def self.included(klass)
        klass.class_eval do
          attr_accessor :
          alias_method_chain :credentials=, :openid
        end
      end
      
      # Tries to validate the session from information in the session
      def credentials_with_openid=(value)
        self.credentials_without_openid
      end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
authlogic-1.2.2 lib/authlogic/session/openid.rb