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

gcp.rb « routes « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b5e7c5617825605b88e94fd4819e60375901a3d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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