From: John Dong Date: Fri, 17 Aug 2007 20:02:13 +0000 (-0400) Subject: * Validate that quickvote.name is not nil X-Git-Url: https://projects.mako.cc/source/selectricity-live/commitdiff_plain/3b4bd99898faa4b3ebdc78b2e5a2e7047c1a6450 * Validate that quickvote.name is not nil --- 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?