diff options
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/config/routes.rb b/config/routes.rb index d97285f23..bb82d50cb 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -4,7 +4,7 @@ # Copyright (c) 2007 UK Citizens Online Democracy. All rights reserved. # Email: francis@mysociety.org; WWW: http://www.mysociety.org/ # -# $Id: routes.rb,v 1.69 2008-09-03 00:48:55 francis Exp $ +# $Id: routes.rb,v 1.70 2008-09-05 09:05:06 francis Exp $ ActionController::Routing::Routes.draw do |map| @@ -15,8 +15,8 @@ ActionController::Routing::Routes.draw do |map| # Keep in mind you can assign values other than :controller and :action map.with_options :controller => 'general' do |general| - general.frontpage '/', :action => 'frontpage' - general.new_frontpage '/new_frontpage', :action => 'new_frontpage' + general.frontpage '/old_frontpage', :action => 'frontpage' + general.new_frontpage '/', :action => 'new_frontpage' general.auto_complete_for_public_body_query 'auto_complete_for_public_body_query', :action => 'auto_complete_for_public_body_query' general.search_redirect '/search', :action => 'search_redirect' |