discourse/lib/validators/username_setting_validator.rb

14 lines
251 B
Ruby
Raw Normal View History

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