summaryrefslogtreecommitdiff
path: root/config/routes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index 9a98fab15a3..70bdb1d5beb 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -762,6 +762,14 @@ Rails.application.routes.draw do
resources :builds, only: [:index, :show], constraints: { id: /\d+/ } do
collection do
post :cancel_all
+
+ resources :artifacts, only: [] do
+ collection do
+ get :search, path: ':ref_name/*path',
+ format: false,
+ constraints: { ref_name: /.+/ } # could have /
+ end
+ end
end
member do