diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-30 02:17:23 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-30 02:17:23 +0000 |
commit | 5b717908433aac1f7108bb652e23cc6098e4badc (patch) | |
tree | ccb6e25ec5dc1ddf36f2b9e33995ed35e666adaf /config | |
parent | f00c851fc545a85c413332d99f3f83b5c4033b2b (diff) | |
download | redmine-5b717908433aac1f7108bb652e23cc6098e4badc.tar.gz redmine-5b717908433aac1f7108bb652e23cc6098e4badc.zip |
route: code layout clean up issue_moves route
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8430 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config')
-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 838fde16a..43965a064 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -49,7 +49,8 @@ ActionController::Routing::Routes.draw do |map| end end - map.resources :issue_moves, :only => [:new, :create], :path_prefix => '/issues', :as => 'move' + map.resources :issue_moves, :only => [:new, :create], + :path_prefix => '/issues', :as => 'move' map.resources :queries, :except => [:show] # Misc issue routes. TODO: move into resources |