X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/7bc8f21d6a7593a082797dd41d6fc9005bc4f112..3b4bd99898faa4b3ebdc78b2e5a2e7047c1a6450:/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?