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

sherlock.rb « routes « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9be434dba7481aa17e5453a419ff0d5c13cbe99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

if Gitlab::Sherlock.enabled?
  namespace :sherlock do
    resources :transactions, only: [:index, :show] do
      resources :queries, only: [:show]
      resources :file_samples, only: [:show]

      collection do
        delete :destroy_all
      end
    end
  end
end