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

10 lines
214 B
Ruby
Raw Normal View History

2014-06-11 14:42:41 -04:00
class UsernameSettingValidator
def self.valid_value?(val)
!val.present? || User.where(username: val).exists?
end
def self.error_message(val)
I18n.t('site_settings.errors.invalid_username')
end
end