2021-03-11 19:13:27 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
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
|