2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-08-25 20:04:16 -05:00
|
|
|
module Auth
|
2024-06-26 19:27:49 -05:00
|
|
|
LOGIN_METHOD_OAUTH = "oauth"
|
|
|
|
LOGIN_METHOD_LOCAL = "local"
|
2013-08-25 20:04:16 -05:00
|
|
|
end
|
|
|
|
|
2019-10-01 23:01:53 -05: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 05:47:30 -05:00
|
|
|
require "auth/linkedin_oidc_authenticator"
|
2019-10-01 23:01:53 -05:00
|
|
|
require "auth/google_oauth2_authenticator"
|
|
|
|
require "auth/discord_authenticator"
|