working quickvote support created
[selectricity-live] / app / models / voter.rb
index a63ec67a68ccbf7c8e4d752bed82a0ef081fd9fd..44efee6e1aa7a0e7b49391955202e82d91e195b9 100644 (file)
@@ -1,3 +1,13 @@
 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?