Merge jdong
[selectricity-live] / app / models / voter.rb
old mode 100755 (executable)
new mode 100644 (file)
index f229909..012c795
@@ -1,7 +1,12 @@
 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

Benjamin Mako Hill || Want to submit a patch?