X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/8ae0d71896fa022dd80e5a5de993e1382564fcb1..f0a07fead89d29513f76ee42b29a0f87dbe926d6:/app/models/quick_vote.rb 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?