diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-20 19:30:38 +0000 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-20 19:30:38 +0000 |
commit | 395f3a1d20eb250992629054ddaf1b22aaa899a1 (patch) | |
tree | 64190cd36bd933e4882cecd48dd1ea8a97cd8b0d /config | |
parent | 4873034aa3ef847283a6ae1e89b185f820c6dd84 (diff) | |
parent | e9f1c39e7e258e58fa79a8646c3ad224119a0ae5 (diff) | |
download | gitlab-ce-395f3a1d20eb250992629054ddaf1b22aaa899a1.tar.gz |
Merge branch 'feature/internal_ids' of /home/git/repositories/gitlab/gitlabhq
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index ff84bc15270..5cf47f9ac5e 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -281,7 +281,7 @@ Gitlab::Application.routes.draw do end end - resources :issues, except: [:destroy] do + resources :issues, constraints: {id: /\d+/}, except: [:destroy] do collection do post :bulk_update end |