diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-19 22:12:59 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-19 22:12:59 +0300 |
commit | 20397091f10f4c00db7cfab7b8598b9a6b7fdec1 (patch) | |
tree | 749f6b3885010561ec391370d77f23c7e10ef13b /config | |
parent | 608f3286539fbcdb4727cb77623261fa506381ff (diff) | |
download | gitlab-ce-20397091f10f4c00db7cfab7b8598b9a6b7fdec1.tar.gz |
Show iid in event feed and uatocomplete as default id for issues, mr
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 |