mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 04:13:39 +08:00
15 lines
255 B
Ruby
15 lines
255 B
Ruby
|
class EnableInviteOnlyValidator
|
||
|
def initialize(opts = {})
|
||
|
@opts = opts
|
||
|
end
|
||
|
|
||
|
def valid_value?(val)
|
||
|
return true if val == 'f'
|
||
|
!SiteSetting.enable_sso?
|
||
|
end
|
||
|
|
||
|
def error_message
|
||
|
I18n.t('site_settings.errors.sso_invite_only')
|
||
|
end
|
||
|
end
|