A few major changes:
[selectricity] / app / models / election.rb
index 29bf1b03e4897ad36f5345b3ec6521e514a8abdf..ba466b4b55928dac2f5291e0513d77b684a8c08d 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,25 @@ class Election < ActiveRecord::Base
     self.candidates.each do |candidate|
       candidate.destroy
     end
-    super destroy
+    super
   end
-  
+
+  def start_blockers
+    reasons = []
+    
+    if self.candidates.length <= 1
+      reasons << "You must have at least two candidates."
+    end
+    
+    if self.voters.length <= 1
+      reasons << "You must have at least two voters."
+    end
+
+    reasons
+  end
+
+  def activate!
+    self.active = 1
+  end
+
 end

Benjamin Mako Hill || Want to submit a patch?