2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-08-26 11:04:16 +10:00
|
|
|
module Auth
|
2024-06-27 10:27:49 +10:00
|
|
|
LOGIN_METHOD_OAUTH = "oauth"
|
|
|
|
LOGIN_METHOD_LOCAL = "local"
|
2013-08-26 11:04:16 +10:00
|
|
|
end
|
|
|
|
|
2019-10-02 14:01:53 +10:00
|
|
|
require "auth/auth_provider"
|
|
|
|
require "auth/result"
|
|
|
|
require "auth/authenticator"
|
|
|
|
require "auth/managed_authenticator"
|
|
|
|
require "auth/facebook_authenticator"
|
|
|
|
require "auth/github_authenticator"
|
|
|
|
require "auth/twitter_authenticator"
|
2024-04-19 18:47:30 +08:00
|
|
|
require "auth/linkedin_oidc_authenticator"
|
2019-10-02 14:01:53 +10:00
|
|
|
require "auth/google_oauth2_authenticator"
|
|
|
|
require "auth/discord_authenticator"
|