X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/c5fda1e5174238779afd496014379d6446d1e3c1..729d45807f8d8e179e4a723c304336e1945acf67:/app/controllers/voter_controller.rb diff --git a/app/controllers/voter_controller.rb b/app/controllers/voter_controller.rb index 2527118..f4e0e7e 100644 --- a/app/controllers/voter_controller.rb +++ b/app/controllers/voter_controller.rb @@ -1,13 +1,14 @@ class VoterController < ApplicationController - model :voter - model :vote - model :election + layout 'main' + require_dependency "voter" + require_dependency "vote" + require_dependency "election" def index password = params[:id] password = params[:vote][:password] if params[:vote] - if @voter = Voter.find_all( [ "password = ?", password ] )[0] - render :action => 'vote' + if @voter = FullVoter.find(:all, :conditions => [ "password = ?", password ] )[0] + render :action => 'fullvote' end end @@ -40,6 +41,7 @@ class VoterController < ApplicationController private def authenticate password = params[:id] - @voter = Voter.find_all( [ "password = ?", password ] )[0] + @voter = FullVoter.find(:all, :conditions => [ "password = ?", password ] )[0] end end +