summaryrefslogtreecommitdiff
path: root/app/validators/namespace_name_validator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/validators/namespace_name_validator.rb')
-rw-r--r--app/validators/namespace_name_validator.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/app/validators/namespace_name_validator.rb b/app/validators/namespace_name_validator.rb
deleted file mode 100644
index fb1c241037c..00000000000
--- a/app/validators/namespace_name_validator.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-# frozen_string_literal: true
-
-# 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