discourse/lib/validators/min_username_length_validat...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
530 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class MinUsernameLengthValidator
def initialize(opts = {})
@opts = opts
end
def valid_value?(value)
return false if value > SiteSetting.max_username_length
@username = User.where('length(username) < ?', value).pluck_first(:username)
2018-10-02 03:20:19 -04:00
@username.blank?
end
def error_message
if @username.blank?
I18n.t("site_settings.errors.min_username_length_range")
else
I18n.t("site_settings.errors.min_username_length_exists", username: @username)
end
end
end