diff options
-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} |