2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/lib/validators/allow_user_locale_enabled_validator.rb

18 lines
No EOL
401 B
Ruby

class AllowUserLocaleEnabledValidator
def initialize(opts={})
@opts = opts
end
def valid_value?(val)
# only validate when enabling setting locale from headers
return true if val == "f"
# ensure that allow_user_locale is enabled
SiteSetting.allow_user_locale
end
def error_message
"You must first enable 'allow user locale' before enabling this setting."
end
end