X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/5f51982916827b84d73bfa8f3a98a9ee1d48d3ce..b82260b129b48f9da19e73e81e1e26b89c1f53e5:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index 7a7b101..96beafd 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -11,23 +11,31 @@ 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', :requirements => { :action => /(create|add_candidate|sort_candidates)/ } - map.quickaction 'quickvote/:votename/:action', + map.quickaction 'quickvote/:ident/:action', :controller => 'quickvote', :requirements => { :action => /(change|confirm|results)/ } - map.quickvote 'quickvote/:votename', + map.quickvote 'quickvote/:ident', :controller => 'quickvote', :action => 'index' # Allow downloading Web Service WSDL as a file with an extension # 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'