mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:42:04 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
19 lines
458 B
Ruby
19 lines
458 B
Ruby
# frozen_string_literal: true
|
|
|
|
class EnableSsoValidator
|
|
def initialize(opts = {})
|
|
@opts = opts
|
|
end
|
|
|
|
def valid_value?(val)
|
|
return true if val == 'f'
|
|
return false if SiteSetting.sso_url.blank? || SiteSetting.invite_only?
|
|
true
|
|
end
|
|
|
|
def error_message
|
|
return I18n.t('site_settings.errors.sso_url_is_empty') if SiteSetting.sso_url.blank?
|
|
return I18n.t('site_settings.errors.sso_invite_only') if SiteSetting.invite_only?
|
|
end
|
|
end
|