debian-mirror-gitlab/app/validators/namespace_name_validator.rb
2015-12-23 02:04:40 +05:30

11 lines
337 B
Ruby

# NamespaceNameValidator
#
# Custom validator for GitLab namespace name strings.
class NamespaceNameValidator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
unless value =~ Gitlab::Regex.namespace_name_regex
record.errors.add(attribute, Gitlab::Regex.namespace_name_regex_message)
end
end
end