]> projects.mako.cc - selectricity/blobdiff - app/models/quick_vote.rb
Added the ability to do ajax adding of candidates so there is no longer
[selectricity] / app / models / quick_vote.rb
index fba31a8e9678f9e5953c3226486b70d9a949ebfa..3538a3cc5d9047f2a4a7fccc8cc925bca6c2e2f2 100644 (file)
@@ -16,18 +16,14 @@ class QuickVote < Election
   
   def initialize(params={})
     super
-    self.enddate =  DateTime.now + 30
+    self.enddate =  Time.now + 30
     self.active = 1
     self.anonymous = 1
     self.quickvote = 1
   end
 
-  def candidatelist=(candstring='')
-    @raw_candidates = candstring.split(';').collect {|cand| cand.strip }
-  end
-
-  def candidatelist
-    @raw_candidates.join("; ")
+  def candidatelist=(candlist)
+    @raw_candidates = candlist
   end
 
   def name

Benjamin Mako Hill || Want to submit a patch?