X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/86a510847ee3074727ec8c0e814cb957c40ef0d4..6df3d73c4a0c52d79f3e8abe5180fbd73953a6a5:/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?