diff options
author | Peter Leitzen <pleitzen@gitlab.com> | 2019-01-06 13:59:10 +0100 |
---|---|---|
committer | Peter Leitzen <pleitzen@gitlab.com> | 2019-01-06 15:13:14 +0100 |
commit | b78ac977eeb8d631ff6c56674d8c081a3249138b (patch) | |
tree | 96e1ce80845578485c2229d8e51e940910f9ac44 /config/routes | |
parent | 1aa2ac13b95b9fa9527596610bb07e132dc1a6f0 (diff) | |
download | gitlab-ce-b78ac977eeb8d631ff6c56674d8c081a3249138b.tar.gz |
Move settings operations controller from EE to CEmove-settings-oprations-to-ce
This commit prepares the structure for the upcoming feature error
tracking.
Diffstat (limited to 'config/routes')
-rw-r--r-- | config/routes/project.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/routes/project.rb b/config/routes/project.rb index 03c95b61e51..f50bf5ab76f 100644 --- a/config/routes/project.rb +++ b/config/routes/project.rb @@ -445,6 +445,10 @@ constraints(::Constraints::ProjectUrlConstrainer.new) do # its preferable to keep it below all other project routes draw :wiki draw :repository + + namespace :settings do + resource :operations, only: [:show, :update] + end end resources(:projects, |