This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/lib/validators/username_setting_validator.rb
2014-06-11 16:20:57 -04:00

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