mirror of
https://github.com/discourse/discourse.git
synced 2025-06-24 16:57:24 +08:00
10 lines
214 B
Ruby
10 lines
214 B
Ruby
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
|