2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00
discourse/lib/validators/username_setting_validator.rb

13 lines
249 B
Ruby

class UsernameSettingValidator
def initialize(opts={})
@opts = opts
end
def valid_value?(val)
!val.present? || User.where(username: val).exists?
end
def error_message
I18n.t('site_settings.errors.invalid_username')
end
end