From 3b4bd99898faa4b3ebdc78b2e5a2e7047c1a6450 Mon Sep 17 00:00:00 2001 From: John Dong Date: Fri, 17 Aug 2007 16:02:13 -0400 Subject: [PATCH] * Validate that quickvote.name is not nil --- app/models/quick_vote.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/models/quick_vote.rb b/app/models/quick_vote.rb index 13e6168..ad72717 100644 --- a/app/models/quick_vote.rb +++ b/app/models/quick_vote.rb @@ -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? -- 2.30.2