Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/routes/project.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb
index 909a12a0204..757e1852da4 100644
--- a/config/routes/project.rb
+++ b/config/routes/project.rb
@@ -222,12 +222,12 @@ constraints(ProjectUrlConstrainer.new) do
end
resources :container_registry, only: [:index, :destroy],
- controller: 'registry/repositories'
+ controller: 'registry/repositories'
namespace :registry do
resources :repository, only: [] do
resources :tags, only: [:destroy],
- constraints: { id: Gitlab::Regex.container_registry_reference_regex }
+ constraints: { id: Gitlab::Regex.container_registry_reference_regex }
end
end