discourse/lib/validators/username_setting_validator.rb

14 lines
251 B
Ruby
Raw Normal View History

2014-06-12 02:42:41 +08:00
class UsernameSettingValidator
2017-07-28 09:20:09 +08:00
def initialize(opts = {})
@opts = opts
end
def valid_value?(val)
2014-06-12 02:42:41 +08:00
!val.present? || User.where(username: val).exists?
end
def error_message
2014-06-12 02:42:41 +08:00
I18n.t('site_settings.errors.invalid_username')
end
end