added first full working version of embeddable elections
[selectricity-live] / config / routes.rb
index 82474df671b63add51df0e59463c75874aaebf78..8c52ca077ad23e90fea7493117831242c2b55d9f 100644 (file)
@@ -11,9 +11,23 @@ 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 'quickvote/:action/:id',
+
+  map.connect 'voter/:action',
+              :controller => 'voter',
+              :requirements => { :action => /(review|confirm|authenticate|index|login|reminder|results)/ }
+
+  map.voteopen 'voter/open.:election_id',
+                   :controller => 'voter',
+                   :action => 'index'
+
+  map.votepassword 'voter/:urlpassword',
+                   :controller => 'voter',
+                   :action => 'index'
+
+  map.connect 'quickvote/:action/(open.)?:id',
                :controller => 'quickvote',
                :requirements => { :action => /(create|add_candidate|sort_candidates|my_quickvotes)/ }
 

Benjamin Mako Hill || Want to submit a patch?