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
private
def authenticate
password = params[:id]
- @voter = Voter.find_all( [ "password = ?", password ] )[0]
+ @voter = FullVoter.find(:all, :conditions => [ "password = ?", password ] )[0]
end
end
+