diff options
author | Valery Sizov <vsv2711@gmail.com> | 2015-03-15 18:17:12 +0200 |
---|---|---|
committer | Valery Sizov <vsv2711@gmail.com> | 2015-03-15 19:44:59 +0200 |
commit | 9698b36c1cd0808adb006593c0e8649cb42f3571 (patch) | |
tree | 16c87f6a1d742c4b7a939f38e45af66b995ba1d7 /config | |
parent | 606d24ff2df157ec70003132d1ead7a47dc32883 (diff) | |
download | gitlab-ce-9698b36c1cd0808adb006593c0e8649cb42f3571.tar.gz |
Subscription
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 889995e92a6..a976ba9d593 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -406,6 +406,7 @@ Gitlab::Application.routes.draw do post :automerge get :automerge_check get :ci_status + post :set_subscription end collection do @@ -440,6 +441,9 @@ Gitlab::Application.routes.draw do end resources :issues, constraints: { id: /\d+/ }, except: [:destroy] do + member do + post :set_subscription + end collection do post :bulk_update end |