summaryrefslogtreecommitdiff
path: root/lib/gitlab/regex.rb
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-07-19 10:52:03 +0200
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2017-07-19 10:52:03 +0200
commit59c808a636b74e9ddaae33dc1236af9b569e027f (patch)
tree40a3676d15042da150074fef639905d9e904bc6f /lib/gitlab/regex.rb
parent9f36012e026845e87c39d5f142abbaa44bde8f2b (diff)
downloadgitlab-ce-59c808a636b74e9ddaae33dc1236af9b569e027f.tar.gz
Add a test for container repository name regexp
Diffstat (limited to 'lib/gitlab/regex.rb')
-rw-r--r--lib/gitlab/regex.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/gitlab/regex.rb b/lib/gitlab/regex.rb
index 4b3666b3e46..1adc5ec952a 100644
--- a/lib/gitlab/regex.rb
+++ b/lib/gitlab/regex.rb
@@ -28,6 +28,10 @@ module Gitlab
@container_repository_regex ||= %r{\A[a-z0-9]+(?:[-._/][a-z0-9]+)*\Z}
end
+ ##
+ # We do not use regexp anchors here because these are not allowed when
+ # used as a routing constraint.
+ #
def container_registry_tag_regex
@container_registry_tag_regex ||= /[\w][\w.-]{0,127}/
end