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