Made a large number of mostly cosmetic fixes after a detailed
[selectricity] / app / models / voter.rb
index 13b43f525ac7882ac85d9c36e86483213d4573e1..62466755db4790175cfbc3e1712872ab8ba4698a 100644 (file)
@@ -1,4 +1,11 @@
 class Voter < ActiveRecord::Base
   belongs_to :election
   has_one :vote
+
+  def destroy
+    vote.destroy if vote
+    super
+  end
 end
+
+

Benjamin Mako Hill || Want to submit a patch?