X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/eaf661eb6a8571bc24b180cfc731f3b9b38a8fff..6b988cf46f0efdcad41e51c425e4ea2d462f5425:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index a05b803..efd6a28 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -11,17 +11,31 @@ 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)/ } + :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 @@ -34,8 +48,7 @@ ActionController::Routing::Routes.draw do |map| # # Then reference it with the named route: # image_tag graph_url(:action => 'show', :id => 42) - map.graph "graphs/:action/:id/image.png", :controller => "graphs" - map.graph "graphs/:action/image.png", :controller => "graphs" #pics w/o id's + map.graph "graph/:action/:id/graph.png", :controller => "graph" # Install the default route as the lowest priority. map.connect ':controller/:action/:id.:format'