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:
Diffstat (limited to 'config/routes/gcp.rb')
-rw-r--r--config/routes/gcp.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/config/routes/gcp.rb b/config/routes/gcp.rb
new file mode 100644
index 00000000000..b5e7c561782
--- /dev/null
+++ b/config/routes/gcp.rb
@@ -0,0 +1,13 @@
+# frozen_string_literal: true
+
+# All routing related to gcp
+# that is already under /-/ scope only
+
+scope format: false do
+ namespace :gcp do
+ namespace :artifact_registry do
+ resources :docker_images, only: :index
+ resources :setup, only: :new
+ end
+ end
+end