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

14 lines
249 B
Ruby

class UsernameSettingValidator
def initialize(opts={})
@opts = opts
end
def valid_value?(val)
!val.present? || User.where(username: val).exists?
end
def error_message
I18n.t('site_settings.errors.invalid_username')
end
end