Created a partial to DRY the aja voting method. Modified the voter class to
[selectricity-live] / app / models / voter.rb
index f229909814c12fbd51beeb120061661ef87a67ec..012c795a075279e68fd362a51f3f376056695d74 100644 (file)
@@ -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?