route: code layout clean up groups route
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8381 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
0d2b35dbb4
commit
f8cb06bff2
|
@ -237,10 +237,18 @@ ActionController::Routing::Routes.draw do |map|
|
|||
:conditions => {:method => :get}
|
||||
|
||||
map.resources :groups, :member => {:autocomplete_for_user => :get}
|
||||
map.group_users 'groups/:id/users', :controller => 'groups', :action => 'add_users', :id => /\d+/, :conditions => {:method => :post}
|
||||
map.group_user 'groups/:id/users/:user_id', :controller => 'groups', :action => 'remove_user', :id => /\d+/, :conditions => {:method => :delete}
|
||||
map.connect 'groups/destroy_membership/:id', :controller => 'groups', :action => 'destroy_membership', :id => /\d+/, :conditions => {:method => :post}
|
||||
map.connect 'groups/edit_membership/:id', :controller => 'groups', :action => 'edit_membership', :id => /\d+/, :conditions => {:method => :post}
|
||||
map.group_users 'groups/:id/users', :controller => 'groups',
|
||||
:action => 'add_users', :id => /\d+/,
|
||||
:conditions => {:method => :post}
|
||||
map.group_user 'groups/:id/users/:user_id', :controller => 'groups',
|
||||
:action => 'remove_user', :id => /\d+/,
|
||||
:conditions => {:method => :delete}
|
||||
map.connect 'groups/destroy_membership/:id', :controller => 'groups',
|
||||
:action => 'destroy_membership', :id => /\d+/,
|
||||
:conditions => {:method => :post}
|
||||
map.connect 'groups/edit_membership/:id', :controller => 'groups',
|
||||
:action => 'edit_membership', :id => /\d+/,
|
||||
:conditions => {:method => :post}
|
||||
|
||||
map.resources :trackers, :except => :show
|
||||
map.resources :issue_statuses, :except => :show, :collection => {:update_issue_done_ratio => :post}
|
||||
|
|
Loading…
Reference in New Issue