Fixed default route to be to the store controller
[depot.git] / config / routes.rb
index 61ff96b8c88d70e2e8baaeb961b06fb4fc5248e1..13bc70e430b6816f469f189ab053ef243a1d9fef 100644 (file)
@@ -33,7 +33,7 @@ ActionController::Routing::Routes.draw do |map|
   #   end
 
   # You can have the root of your site routed with map.root -- just remember to delete public/index.html.
-  # map.root :controller => "welcome"
+  map.root :controller => "store"
 
   # See how all your routes lay out with "rake routes"
 
@@ -42,4 +42,6 @@ ActionController::Routing::Routes.draw do |map|
   # consider removing the them or commenting them out if you're using named routes and resources.
   map.connect ':controller/:action/:id'
   map.connect ':controller/:action/:id.:format'
+  
+#  map.connect '', :controller => "store"
 end