Changed quickvotes so that they take an identifier as opposed to just a
[selectricity] / config / routes.rb
index a05b80376764f5dc4829db0b02f06bfc21a3961a..96beafd4dde7af51ba160cde5e02fff5794c7dd0 100644 (file)
@@ -17,11 +17,11 @@ ActionController::Routing::Routes.draw do |map|
                :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
@@ -34,8 +34,7 @@ ActionController::Routing::Routes.draw do |map|
   #
   # 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
+  map.graph "graph/:action/:id/graph.png", :controller => "graph"
   
   # Install the default route as the lowest priority.
   map.connect ':controller/:action/:id.:format'

Benjamin Mako Hill || Want to submit a patch?