diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-07 16:18:53 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-01-07 16:18:53 +0000 |
commit | d29638845a9c5d69f9ad6e9ab8c81ed29c808c3f (patch) | |
tree | 4fd7f84ee7eb5c3e1bc124ad7193812f24094013 /config/routes.rb | |
parent | dc8fcbaf036981fa08899f8de46afb8a18e4612a (diff) | |
download | redmine-d29638845a9c5d69f9ad6e9ab8c81ed29c808c3f.tar.gz redmine-d29638845a9c5d69f9ad6e9ab8c81ed29c808c3f.zip |
Allows project to be changed from the bulk edit form.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8536 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index d7b76bb11..7814fe807 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -198,7 +198,7 @@ ActionController::Routing::Routes.draw do |map| map.resources :queries, :except => [:show] map.resources :issues, - :collection => {:bulk_edit => :get, :bulk_update => :post} do |issues| + :collection => {:bulk_edit => [:get, :post], :bulk_update => :post} do |issues| issues.resources :time_entries, :controller => 'timelog', :collection => {:report => :get} issues.resources :relations, :shallow => true, |