X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/6fdb49ee0dfc76980bcefb18968d1e1c55c8149c..6b988cf46f0efdcad41e51c425e4ea2d462f5425:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index 735f5d7..efd6a28 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -11,8 +11,22 @@ 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.connect 'quickvote/:action/:id', :controller => 'quickvote', :requirements => { :action => /(create|add_candidate|sort_candidates|my_quickvotes)/ }