mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 11:53:38 +08:00
6ebadaed2c
This functionality was never supported but before the new review queue it didn't have any errors. Now the combination of settings is prevented and existing sites with sso enabled will be migrated to remove invite only.
10 lines
271 B
Ruby
10 lines
271 B
Ruby
class DisableInviteOnlySso < ActiveRecord::Migration[5.2]
|
|
def up
|
|
execute(<<~SQL)
|
|
UPDATE site_settings SET value = 'f'
|
|
WHERE name = 'invite_only'
|
|
AND EXISTS(SELECT 1 FROM site_settings WHERE name = 'enable_sso' AND value = 't')
|
|
SQL
|
|
end
|
|
end
|