class VoterController < ApplicationController
+ layout 'main'
model :voter
model :vote
model :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
+