mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:33:24 +08:00
e0a6d12c55
The previous implementation would attempt to fetch groups using the end-user's Google auth token. This only worked for admin accounts, or users with 'delegated' access to the `admin.directory.group.readonly` API. This commit changes the approach to use a single 'service account' for fetching the groups. This removes the need to add permissions to all regular user accounts. I'll be updating the [meta docs](https://meta.discourse.org/t/226850) with instructions on setting up the service account. This is technically a breaking change in behavior, but the existing implementation was marked experimental, and is currently unusable in production google workspace environments.
14 lines
357 B
Ruby
14 lines
357 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/discord_authenticator'
|