fixed an error in routes

This commit is contained in:
Nick Black 2007-04-14 14:43:34 +00:00
parent e3de346bdd
commit 12f9bedbf5

View file

@ -72,7 +72,10 @@ ActionController::Routing::Routes.draw do |map|
map.connect '/test/populate/:table/:from/:count', :controller => 'test', :action => 'populate'
map.connect '/test/populate/:table/:count', :controller => 'test', :action => 'populate', :from => 1
# geocoder
map.connect 'geocoder/search/', :controller => 'geocoder', :action => 'search'
# fall through
# map.connect ':controller/:id/:action'
map.connect ':controller/:id/:action'
map.connect ':controller/:action'
end