Made a large number of mostly cosmetic fixes after a detailed
[selectricity] / app / models / voter.rb
index a63ec67a68ccbf7c8e4d752bed82a0ef081fd9fd..62466755db4790175cfbc3e1712872ab8ba4698a 100644 (file)
@@ -1,3 +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?