discourse/lib/validators/selectable_avatars_enabled_...

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

16 lines
318 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class SelectableAvatarsEnabledValidator
def initialize(opts = {})
@opts = opts
end
def valid_value?(value)
value == "f" || SiteSetting.selectable_avatars.split("\n").size > 1
end
def error_message
I18n.t('site_settings.errors.empty_selectable_avatars')
end
end