]> projects.mako.cc - selectricity/blobdiff - app/apis/selectricity_api.rb
list_quickvotes XMLRPC returns candidate ID's instead of names
[selectricity] / app / apis / selectricity_api.rb
index 8a8dce4d8072faca8cbc29b7e9e1d496c2a521c9..af75cf67d28f60db7e366a8c503fb39f859f0170 100644 (file)
@@ -1,3 +1,15 @@
+class ElectionStruct < ActionWebService::Struct
+  member :name, :string
+  member :description, :string
+  member :candidates, [:int]
+  member :id, :int
+end
+class VoteInfo < ActionWebService::Struct
+  member :voter_id, :int
+  member :voter_ipaddress, :string
+  member :vote_time, :int
+end
+
 class VoteResultStruct < ActionWebService::Struct
   member :plurality_winners, [:int]
   member :approval_winners, [:int]
@@ -16,6 +28,9 @@ class SelectricityAPI < ActionWebService::API::Base
   api_method :get_quickvote_results, :expects => [:string], :returns => [VoteResultStruct]
   api_method :get_quickvote_candidate_map, :expects => [:string], :returns => [CandidateMap]
   api_method :quickvote_candidate_ids_to_names, :expects => [:string,[:int]], :returns => [[:string]]
+  api_method :get_quickvote_votes, :expects => [:string], :returns => [ [VoteInfo] ]
+  api_method :list_quickvotes, :expects => [], :returns => [[ElectionStruct]]
+
 end
 
 

Benjamin Mako Hill || Want to submit a patch?