This repository has been archived on 2023-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
osr-discourse-src/lib/validators/selectable_avatars_mode_validator.rb
T
2023-01-09 12:10:19 +00:00

16 lines
310 B
Ruby

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