mirror of
https://github.com/discourse/discourse.git
synced 2025-09-08 12:06:51 +08:00
20 lines
514 B
Ruby
20 lines
514 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? ? true : false
|
||
|
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
|