mirror of
https://github.com/discourse/discourse.git
synced 2025-05-21 18:12:32 +08:00
FEATURE: Check if selectable avatars exist before enabling them (#10032)
This commit is contained in:
15
lib/validators/selectable_avatars_enabled_validator.rb
Normal file
15
lib/validators/selectable_avatars_enabled_validator.rb
Normal 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
|
Reference in New Issue
Block a user