Merged changes from jdong's branch into HEAD.
[selectricity-live] / app / apis / selectricity_api.rb
index 34c9287137addb59e778e785354c00e24334fdef..b1210c6e861eb9b02c1d8a7693ee5885241d5986 100644 (file)
@@ -1,7 +1,15 @@
+class ElectionStruct < ActionWebService::Struct
+  member :name, :string
+  member :description, :string
+  member :candidate_ids, [:int]
+  member :candidate_names, [:string]
+  member :id, :int
+end
 class VoteInfo < ActionWebService::Struct
   member :voter_id, :int
   member :voter_ipaddress, :string
   member :vote_time, :int
+  member :vote, [:int]
 end
 
 class VoteResultStruct < ActionWebService::Struct
@@ -23,6 +31,9 @@ class SelectricityAPI < ActionWebService::API::Base
   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]]
+  api_method :get_quickvote, :expects => [:string], :returns => [ElectionStruct]
+  api_method :create_quickvote, :expects => [ElectionStruct], :returns => [:string]
 end
 
 

Benjamin Mako Hill || Want to submit a patch?