module Authlogic::Session::Password
Handles authenticating via a traditional username and password.
Attributes
configured_password_methods[RW]
Public Class Methods
included(klass)
click to toggle source
# File lib/authlogic/session/password.rb, line 5 def self.included(klass) klass.class_eval do extend Config include InstanceMethods validate :validate_by_password, :if => :authenticating_with_password? class << self attr_accessor :configured_password_methods end end end