X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/5f51982916827b84d73bfa8f3a98a9ee1d48d3ce..c4eaad1a963dae4c7449ab93cabc8607d4e8f19c:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index 7a7b101..ee64eab 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -11,7 +11,7 @@ ActionController::Routing::Routes.draw do |map| # You can have the root of your site routed by hooking up '' # -- just remember to delete public/index.html. - map.connect '', :controller => "site" + map.connect '', :controller => "site", :action => "index" map.connect 'quickvote/:action/:id', :controller => 'quickvote', @@ -28,6 +28,14 @@ ActionController::Routing::Routes.draw do |map| # instead of a file named 'wsdl' map.connect ':controller/service.wsdl', :action => 'wsdl' + # The following pertain to caching and accessing Gruff graphs + # To make caching easier, add a line like this to config/routes.rb: + # map.graph "graph/:action/:id/image.png", :controller => "graph" + # + # Then reference it with the named route: + # image_tag graph_url(:action => 'show', :id => 42) + map.graph "graph/:action/:id/graph.png", :controller => "graph" + # Install the default route as the lowest priority. map.connect ':controller/:action/:id.:format' map.connect ':controller/:action/:id'