X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/5901217a8893619fbdb02d540c08390f92eae368..57886e0afdac6da60651284daee1e088feb14537:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index e2f458d..8ff6992 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -17,12 +17,20 @@ ActionController::Routing::Routes.draw do |map| map.connect 'voter/:action', :controller => 'voter', - :requirements => { :action => /(review|confirm|authenticate|index|login|reminder)/ } + :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.kiosk_ready 'voter/kiosk_ready/:urlpassword', + :controller => 'voter', + :action => 'kiosk_ready' + map.connect 'quickvote/:action/:id', :controller => 'quickvote', :requirements => { :action => /(create|add_candidate|sort_candidates|my_quickvotes)/ }