summaryrefslogtreecommitdiff
path: root/config/routes/sherlock.rb
blob: c9969f91c36eb3d2998d93501add36ae06646d65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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