X-Git-Url: https://projects.mako.cc/source/selectricity-live/blobdiff_plain/49bc919b9f7edd189a311cdb910ab0a7500030ac..4ff0c6cd9e37482d16d1713fd6d265c0604f60d1:/app/models/selectricity_service.rb diff --git a/app/models/selectricity_service.rb b/app/models/selectricity_service.rb index e130375..3f0a3bf 100644 --- a/app/models/selectricity_service.rb +++ b/app/models/selectricity_service.rb @@ -79,8 +79,18 @@ class SelectricityService < ActionWebService::Base def list_quickvotes() all=Array.new QuickVote.find_all.each do |election| - all << ElectionStruct.new (:id => election.id, :name => election.name, :description => election.description, :candidates => election.candidates.collect {|c| c.id } ) + all << get_quickvote(election.name) end return all end + def get_quickvote(shortname) + return ElectionStruct.new unless election=QuickVote.ident_to_quickvote(shortname) + return ElectionStruct.new (:id => election.id, :name => election.name, :description => election.description, :candidate_ids => election.candidates.collect {|c| c.id }, :candidate_names => election.candidates.collect {|c| c.name } ) + end + def create_quickvote(election) + qv=QuickVote.new(:name => election.name, :description => election.description) + qv.candidatelist=election.candidate_names + return qv.save.to_s + end + end