You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
424 B
16 lines
424 B
# frozen_string_literal: true
|
|
|
|
class UnreservedValidator < ActiveModel::EachValidator
|
|
def validate_each(record, attribute, value)
|
|
return if value.nil?
|
|
record.errors.add(attribute, I18n.t('accounts.reserved_username')) if reserved_username?(value)
|
|
end
|
|
|
|
private
|
|
|
|
def reserved_username?(value)
|
|
return false unless Setting.reserved_usernames
|
|
Setting.reserved_usernames.include?(value.downcase)
|
|
end
|
|
end
|