This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/lib/validators/enable_sso_validator.rb

15 lines
253 B
Ruby

class EnableSsoValidator
def initialize(opts = {})
@opts = opts
end
def valid_value?(val)
return true if val == 'f'
SiteSetting.sso_url.present?
end
def error_message
I18n.t('site_settings.errors.sso_url_is_empty')
end
end