A few major changes:
[selectricity] / app / models / election.rb
index be828d0e28fac2512df5f004df1b3053ce5fb3c8..ba466b4b55928dac2f5291e0513d77b684a8c08d 100644 (file)
@@ -1,12 +1,43 @@
 class Election < ActiveRecord::Base
   has_many :candidates
+  has_many :voters
+  has_many :votes
+  belongs_to :user
   validates_presence_of :name, :description
 
+  require 'date'
+
+  def startdate
+    read_attribute( :startdate ) || DateTime.now
+  end
+
+  def enddate
+    read_attribute( :enddate ) || DateTime.now + 14
+  end
+
   def destroy
     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?