X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/75091532075247ae9c47164ea883f4fe803eddf4..94f9b1405c2eefc97faf91ad14ec775584fca65a:/app/models/voter.rb?ds=inline diff --git a/app/models/voter.rb b/app/models/voter.rb index 7139b89..f229909 100644 --- a/app/models/voter.rb +++ b/app/models/voter.rb @@ -2,7 +2,14 @@ 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 -