Skip to content
Snippets Groups Projects

Include coverage reports from child pipeline

All threads resolved!
2 files
+ 66
0
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 14
0
@@ -219,6 +219,20 @@
end
end
# Legacy routes for `/-/integrations` which are now in `/-/settings/integrations`.
# Can be removed in 15.2, see https://gitlab.com/gitlab-org/gitlab/-/issues/334846
resources :integrations, controller: 'settings/integrations', constraints: { id: %r{[^/]+} }, only: [:edit, :update] do
member do
put :test
end
resources :hook_logs, only: [:show], controller: 'settings/integration_hook_logs' do
member do
post :retry
end
end
end
resources :boards, only: [:index, :show, :create, :update, :destroy], constraints: { id: /\d+/ } do
collection do
get :recent
Loading