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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-06-19 21:08:39 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-06-19 21:08:39 +0300
commitce493944f48fb2ad08a5381a7ed1f37ced637bd1 (patch)
tree565c5c3bf18ce60fd6442d7581fc1af7ba148dd1 /config
parente9ea5bbdf998d0bafe14cfd3d70fa545d8ebed83 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'config')
-rw-r--r--config/routes/pipelines.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/config/routes/pipelines.rb b/config/routes/pipelines.rb
index cc3c3400526..c100526180e 100644
--- a/config/routes/pipelines.rb
+++ b/config/routes/pipelines.rb
@@ -26,6 +26,12 @@ resources :pipelines, only: [:index, :new, :create, :show, :destroy] do
resources :stages, only: [], param: :name do
post :play_manual
end
+
+ resources :tests, only: [], controller: 'pipelines/tests' do
+ collection do
+ get :summary
+ end
+ end
end
end