Commit 719e4aab20d8c4a4f0600134efc33f83e6158237
1 parent
fb3dd9c7
Exists in
master
and in
18 other branches
Fix URL access to Gitlab MR in recipe
<issue: #633> Signed-off-by: Carlos Coêlho <carlos@pencillabs.com>
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
cookbooks/colab/templates/gitlab.py.erb
... | ... | @@ -35,7 +35,7 @@ menu_urls = ( |
35 | 35 | url(display=_('Issues'), viewname='gitlab', |
36 | 36 | kwargs={'path': 'dashboard/issues'}, auth=True), |
37 | 37 | url(display=_('Merge Requests'), viewname='gitlab', |
38 | - kwargs={'path': 'merge_requests'}, auth=True), | |
38 | + kwargs={'path': 'dashboard/merge_requests'}, auth=True), | |
39 | 39 | |
40 | 40 | ) |
41 | 41 | ... | ... |