discourse/lib/validators/unicode_username_validator.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
322 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class UnicodeUsernameValidator
def initialize(opts = {})
@opts = opts
end
def valid_value?(value)
@valid = SiteSetting.external_system_avatars_enabled || value == "f"
end
def error_message
I18n.t("site_settings.errors.unicode_usernames_avatars") if !@valid
end
end