2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-12-23 02:04:40 +05:30
|
|
|
# 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
|