FEATURE: Check if selectable avatars exist before enabling them (#10032)

This commit is contained in:
Bianca Nenciu
2020-06-22 16:58:26 +03:00
committed by GitHub
parent 685646540a
commit 68f767a557
6 changed files with 53 additions and 7 deletions

View File

@ -0,0 +1,15 @@
# 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