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

legacy_builds.rb « routes « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c08b581e10194bd313ffb64875854a8b1fc16769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# frozen_string_literal: true

resources :builds, only: [:index, :show], constraints: { id: /\d+/ } do
  collection do
    resources :artifacts, only: [], controller: 'build_artifacts' do
      collection do
        get :latest_succeeded,
          path: '*ref_name_and_path',
          format: false
      end
    end
  end

  member do
    get :raw
  end

  resource :artifacts, only: [], controller: 'build_artifacts' do
    get :download
    get :browse, path: 'browse(/*path)', format: false
    get :file, path: 'file/*path', format: false
    get :raw, path: 'raw/*path', format: false
  end
end