X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/5a8b533b5abec8dc24674e4ef084b0b9779da8af..8afec3c5b4896fd7665e6527f3acb7c7afac7e47:/app/models/voter.rb diff --git a/app/models/voter.rb b/app/models/voter.rb index a63ec67..f229909 100644 --- a/app/models/voter.rb +++ b/app/models/voter.rb @@ -1,3 +1,15 @@ class Voter < ActiveRecord::Base belongs_to :election + has_one :vote + + def destroy + vote.destroy if vote + super + end + + def voted? + vote.confirmed == 1 + end end + +