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/external_system_avatars_validator.rb
Gerhard Schlager a7bc1ecbae FEATURE: Add support for Unicode usernames and group names
Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com>
2019-04-23 13:00:27 +02:00

14 lines
284 B
Ruby

class ExternalSystemAvatarsValidator
def initialize(opts = {})
@opts = opts
end
def valid_value?(value)
@valid = value == "t" || !SiteSetting.unicode_usernames
end
def error_message
I18n.t("site_settings.errors.unicode_usernames_avatars") if !@valid
end
end