X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/277d9e323c1c9c525c1cea4590dc71bc56aeed06..eaf661eb6a8571bc24b180cfc731f3b9b38a8fff:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index 7a7b101..a05b803 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,15 @@ 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 "graphs/:action/:id/image.png", :controller => "graphs" + map.graph "graphs/:action/image.png", :controller => "graphs" #pics w/o id's + # Install the default route as the lowest priority. map.connect ':controller/:action/:id.:format' map.connect ':controller/:action/:id'