diff options
author | Luke Duncalfe <lduncalfe@eml.cc> | 2019-08-14 13:34:42 +1200 |
---|---|---|
committer | Luke Duncalfe <lduncalfe@eml.cc> | 2019-08-15 15:08:34 +1200 |
commit | 88746f5311a2624d99c3639daf2760c6715d5670 (patch) | |
tree | 098fee08c628771f755521a83ec1374f3c5e6077 /config | |
parent | 7c9fb3c61715acb7cb2bfcbad1a12a5ef66d9bbd (diff) | |
download | gitlab-ce-88746f5311a2624d99c3639daf2760c6715d5670.tar.gz |
CE-specific changes to allow design Todos13494-todo-s-not-rendering-when-there-is-a-design-management-related-todo-ce
CE-specific changes for:
https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/15129
Co-Authored-By: Alex Kalderimis <akalderimis@gitlab.com>
Co-Authored-By: Luke Duncalfe <lduncalfe@eml.cc>
Diffstat (limited to 'config')
-rw-r--r-- | config/routes/project.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb index b9258a35f0c..a207ee44d47 100644 --- a/config/routes/project.rb +++ b/config/routes/project.rb @@ -505,7 +505,7 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do get :discussions, format: :json Gitlab.ee do - get 'designs(/*vueroute)', to: 'issues#show', format: false + get 'designs(/*vueroute)', to: 'issues#show', as: :designs, format: false end end |