mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 09:26:54 -06: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
|