diff options
Diffstat (limited to 'config')
-rw-r--r-- | config/routes.rb | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/config/routes.rb b/config/routes.rb index 873369f93..a7dbea655 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -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} |