mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:13:38 +08:00
df3886d6e5
This commit introduces a new site setting "google_oauth2_hd_groups". If enabled, group information will be fetched from Google during authentication, and stored in the Discourse database. These 'associated groups' can be connected to a Discourse group via the "Membership" tab of the group preferences UI. The majority of the implementation is generic, so we will be able to add support to more authentication methods in the near future. https://meta.discourse.org/t/managing-group-membership-via-authentication/175950
16 lines
498 B
Ruby
16 lines
498 B
Ruby
# frozen_string_literal: true
|
|
class CreateAssociatedGroups < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :associated_groups do |t|
|
|
t.string :name, null: false
|
|
t.string :provider_name, null: false
|
|
t.string :provider_id, null: false
|
|
t.datetime :last_used, null: false, default: -> { "CURRENT_TIMESTAMP" }
|
|
|
|
t.timestamps
|
|
end
|
|
|
|
add_index :associated_groups, %i[provider_name provider_id], unique: true, name: 'associated_groups_provider_id'
|
|
end
|
|
end
|