2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-08 12:06:51 +08:00
discourse/lib/validators/selectable_avatars_enabled_validator.rb

15 lines
318 B
Ruby

# 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