module Authlogic::Session::HttpAuth
Handles all authentication that deals with basic HTTP auth. Which is authentication built into the HTTP protocol:
http://username:password@whatever.com
Also, if you are not comfortable letting users pass their raw username and password you can always use the single access token. See Authlogic::Session::Params for more info.
Public Class Methods
included(klass)
click to toggle source
# File lib/authlogic/session/http_auth.rb, line 10 def self.included(klass) klass.class_eval do extend Config include InstanceMethods persist :persist_by_http_auth, :if => :persist_by_http_auth? end end