diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-26 06:08:40 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-26 06:08:40 +0000 |
commit | 116d4e56e83a1f408afe710ce070e699ba206475 (patch) | |
tree | cc62d3820d9bfa199061edfdef3a2f4bda140507 /config/routes/group.rb | |
parent | dddde902acfa6acfb11583c61faa67cc7c8d11b6 (diff) | |
download | gitlab-ce-116d4e56e83a1f408afe710ce070e699ba206475.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'config/routes/group.rb')
-rw-r--r-- | config/routes/group.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/config/routes/group.rb b/config/routes/group.rb index 1d51b3fb6fe..97d339fea98 100644 --- a/config/routes/group.rb +++ b/config/routes/group.rb @@ -31,6 +31,12 @@ constraints(::Constraints::GroupUrlConstrainer.new) do patch :update_auto_devops post :create_deploy_token, path: 'deploy_token/create' end + + resources :integrations, only: [:index, :edit, :update] do + member do + put :test + end + end end resource :variables, only: [:show, :update] |