Skip to content

Instantly share code, notes, and snippets.

@remear
Created August 16, 2010 01:08
Show Gist options
  • Save remear/526198 to your computer and use it in GitHub Desktop.
Save remear/526198 to your computer and use it in GitHub Desktop.
def self.find_by_username_or_email(login)
find_by_email(login) || find_by_login(login)
end
class UserSession < Authlogic::Session::Base
find_by_login_method :find_by_username_or_email
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment