X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/c4eaad1a963dae4c7449ab93cabc8607d4e8f19c..99e1580f0d7707b8e2f8c08f8aae70c3d4906637:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index ee64eab..8ff6992 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -11,17 +11,35 @@ 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|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)/ } + :requirements => { :action => /(create|add_candidate|sort_candidates|my_quickvotes)/ } - 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