X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/c65b1e11059c5cf510b54c785d4a246215058f70..a38724bea6c09b479a93948b6ef4ef61edd24f39:/app/models/voter.rb diff --git a/app/models/voter.rb b/app/models/voter.rb index f229909..3a268f7 100644 --- a/app/models/voter.rb +++ b/app/models/voter.rb @@ -1,7 +1,19 @@ +# Selectricity: Voting Machinery for the Masses +# Copyright (C) 2007, 2008 Benjamin Mako Hill +# Copyright (C) 2007 Massachusetts Institute of Technology +# +# This program is free software. Please see the COPYING file for +# details. + class Voter < ActiveRecord::Base belongs_to :election has_one :vote - + + def reset_vote + self.vote.destroy + self.reload + end + def destroy vote.destroy if vote super