From 4cd139e948ad0de3516b6534146b51faffeca610 Mon Sep 17 00:00:00 2001 From: Jose Ivan Vargas Date: Thu, 22 Dec 2016 16:38:27 -0600 Subject: Moved the members (project_members)option to a single controller called members This controller is going to contain both the project members and groups options for the settings gear. Generated the route and modified the routing to point to the new members setting path --- config/routes/project.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'config') diff --git a/config/routes/project.rb b/config/routes/project.rb index 4d20acbef7a..26e2dc9e6e7 100644 --- a/config/routes/project.rb +++ b/config/routes/project.rb @@ -307,6 +307,10 @@ constraints(ProjectUrlConstrainer.new) do end end + namespace :settings do + resource :members, only: [:show] + end + # Since both wiki and repository routing contains wildcard characters # its preferable to keep it below all other project routes draw :wiki -- cgit v1.2.1