mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
5919618a87
This is not used in core or official plugins, and has been printing a deprecation notice since v2.3.0beta4. All OpenID 2.0 code and dependencies have been dropped. The user_open_ids table remains for now, in case anyone has missed the deprecation notice, and needs to migrate their data. Context at https://meta.discourse.org/t/-/113249
15 lines
396 B
Ruby
15 lines
396 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Auth; end
|
|
|
|
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'
|
|
require 'auth/google_oauth2_authenticator'
|
|
require 'auth/instagram_authenticator'
|
|
require 'auth/discord_authenticator'
|