Working on a step-by-step workflow audit.
[selectricity] / app / models / election.rb
index 29bf1b03e4897ad36f5345b3ec6521e514a8abdf..69038e473946ceddd9a2a23e5fe7dae7571ba31f 100644 (file)
@@ -2,6 +2,7 @@ class Election < ActiveRecord::Base
   has_many :candidates
   has_many :voters
   has_many :votes
+  belongs_to :user
   validates_presence_of :name, :description
 
   require 'date'
@@ -18,7 +19,7 @@ class Election < ActiveRecord::Base
     self.candidates.each do |candidate|
       candidate.destroy
     end
-    super destroy
+    super
   end
   
 end

Benjamin Mako Hill || Want to submit a patch?