fixed colors on graphs
[selectricity] / config / routes.rb
index 96beafd4dde7af51ba160cde5e02fff5794c7dd0..e2f458d3e2afeed8eea48e44df290ed4b8c0b728 100644 (file)
@@ -11,11 +11,21 @@ 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", :action => "index"
+  map.connect '', :controller => "front"
+
+  map.connect '/sitealizer/:action', :controller => 'sitealizer' 
+
+  map.connect 'voter/:action',
+              :controller => 'voter',
+              :requirements => { :action => /(review|confirm|authenticate|index|login|reminder)/ }
+
+  map.votepassword 'voter/:urlpassword',
+                   :controller => 'voter',
+                   :action => 'index'
+
   map.connect 'quickvote/:action/:id',
                :controller => 'quickvote',
-               :requirements => { :action => /(create|add_candidate|sort_candidates)/ }
+               :requirements => { :action => /(create|add_candidate|sort_candidates|my_quickvotes)/ }
 
   map.quickaction 'quickvote/:ident/:action',
                   :controller => 'quickvote',

Benjamin Mako Hill || Want to submit a patch?