diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-27 10:04:37 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-12-27 10:04:37 +0000 |
commit | 984c7da785492531de8028c0ecd614155a081c84 (patch) | |
tree | a476d6aab59dcf0990703ae018850862f03dbb88 /config | |
parent | e70f5ac581323f56b1df75a8cc215d3518d860d8 (diff) | |
download | redmine-984c7da785492531de8028c0ecd614155a081c84.tar.gz redmine-984c7da785492531de8028c0ecd614155a081c84.zip |
route: code layout clean up mail_handler route
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8400 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 e1601066e..30b1c02c9 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -268,7 +268,8 @@ ActionController::Routing::Routes.draw do |map| map.connect 'search', :controller => 'search', :action => 'index', :conditions => {:method => :get} - map.connect 'mail_handler', :controller => 'mail_handler', :action => 'index', :conditions => {:method => :post} + map.connect 'mail_handler', :controller => 'mail_handler', + :action => 'index', :conditions => {:method => :post} map.connect 'admin', :controller => 'admin', :action => 'index', :conditions => {:method => :get} map.connect 'admin/projects', :controller => 'admin', :action => 'projects', :conditions => {:method => :get} |