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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-16 09:10:05 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-16 09:10:05 +0300
commit99f7d9e732811b7d430e195bc7f0589adbf2b27c (patch)
tree814162dc0dade5d283c00ef53a7b6588cdb392e9 /config/routes
parent473d6b24349755c8ade489fdb93d5a5463ccc13f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'config/routes')
-rw-r--r--config/routes/project.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb
index 63e960a9b4c..1ee962fb2a1 100644
--- a/config/routes/project.rb
+++ b/config/routes/project.rb
@@ -156,7 +156,9 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do
end
end
- resource :packages_and_registries, only: [:show]
+ resource :packages_and_registries, only: [:show] do
+ get '/cleanup_image_tags', to: 'packages_and_registries#cleanup_tags'
+ end
end
resources :usage_quotas, only: [:index]