mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05: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
|