diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-30 05:14:51 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-30 05:14:51 +0000 |
commit | ff3230bd9a551313a9f8402617458706034af2d9 (patch) | |
tree | 60fb061e2d9bd14261365f839577e6c0083112eb /config/routes.rb | |
parent | 9835f4b800a44b22e5a301427993d467dc5c687a (diff) | |
download | redmine-ff3230bd9a551313a9f8402617458706034af2d9.tar.gz redmine-ff3230bd9a551313a9f8402617458706034af2d9.zip |
route: code layout clean up issues bulk deletion route
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8434 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index 99a826bef..21d87d5af 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -118,7 +118,8 @@ ActionController::Routing::Routes.draw do |map| :only => [:index, :show, :create, :destroy] end # Bulk deletion - map.connect '/issues', :controller => 'issues', :action => 'destroy', :conditions => {:method => :delete} + map.connect '/issues', :controller => 'issues', :action => 'destroy', + :conditions => {:method => :delete} map.connect 'projects/:id/members/new', :controller => 'members', :action => 'new', :conditions => { :method => :post } |