mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 03:40:00 +08:00
20 lines
499 B
Ruby
20 lines
499 B
Ruby
class MaxUsernameLengthValidator
|
|
def initialize(opts = {})
|
|
@opts = opts
|
|
end
|
|
|
|
def valid_value?(value)
|
|
return false if value < SiteSetting.min_username_length
|
|
@username = User.where('length(username) > ?', value).pluck(:username).first
|
|
@username.blank?
|
|
end
|
|
|
|
def error_message
|
|
if @username.blank?
|
|
I18n.t("site_settings.errors.max_username_length_range")
|
|
else
|
|
I18n.t("site_settings.errors.max_username_length_exists", username: @username)
|
|
end
|
|
end
|
|
end
|