Parent

Files

Merb::Authentication::Strategies::Basic::Base

Public Class Methods

login_param() click to toggle source

Overwrite this method to customize the field

# File lib/merb-auth-more/strategies/abstract_password.rb, line 17
def self.login_param
  (Merb::Plugins.config[:"merb-auth"][:login_param] || :login).to_s.to_sym
end
password_param() click to toggle source

Overwrite this method to customize the field

# File lib/merb-auth-more/strategies/abstract_password.rb, line 12
def self.password_param
  (Merb::Plugins.config[:"merb-auth"][:password_param] || :password).to_s.to_sym
end

Public Instance Methods

login_param() click to toggle source
# File lib/merb-auth-more/strategies/abstract_password.rb, line 25
def login_param
  @login_param ||= Base.login_param
end
password_param() click to toggle source
# File lib/merb-auth-more/strategies/abstract_password.rb, line 21
def password_param
  @password_param ||= Base.password_param
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.