X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/b47d1fbe36d5aeb9b79d6bbaab035ca448a3c3ef..adfcf4dd7d989d0560e2a8f6a590dd10c5a49a08:/config/routes.rb diff --git a/config/routes.rb b/config/routes.rb index e2f458d..8c52ca0 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -17,13 +17,17 @@ 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.connect 'quickvote/:action/:id', + map.connect 'quickvote/:action/(open.)?:id', :controller => 'quickvote', :requirements => { :action => /(create|add_candidate|sort_candidates|my_quickvotes)/ }