* Validate that quickvote.name is not nil
authorJohn Dong <jdong@mit.edu>
Fri, 17 Aug 2007 20:02:13 +0000 (16:02 -0400)
committerJohn Dong <jdong@mit.edu>
Fri, 17 Aug 2007 20:02:13 +0000 (16:02 -0400)
app/models/quick_vote.rb

index 13e616824c58c0a1f3b3610bf7e0322fd49604c6..ad727170f036c2b60019ffe6d7a63759d6ddfd8f 100644 (file)
@@ -1,6 +1,7 @@
 class QuickVote < Election
   after_validation :create_candidates
   validates_uniqueness_of :name
+  validates_presence_of :name
   attr_accessor :raw_candidates
   attr_accessor :reviewed
   attr_accessor :plurality_result
@@ -39,7 +40,7 @@ class QuickVote < Election
   end
 
   def name
-    read_attribute( :name ).downcase()
+    read_attribute( :name ).downcase() if read_attribute( :name )
   end
 
   def reviewed?

Benjamin Mako Hill || Want to submit a patch?