X-Git-Url: https://projects.mako.cc/source/selectricity/blobdiff_plain/ee900b07e68ccad333d94c0cc322dcca289349a5..8ae0d71896fa022dd80e5a5de993e1382564fcb1:/app/apis/selectricity_api.rb diff --git a/app/apis/selectricity_api.rb b/app/apis/selectricity_api.rb index d478a5a..34c9287 100644 --- a/app/apis/selectricity_api.rb +++ b/app/apis/selectricity_api.rb @@ -1,3 +1,9 @@ +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] @@ -12,9 +18,11 @@ class CandidateMap < ActionWebService::Struct member :errors, [:string] end class SelectricityAPI < ActionWebService::API::Base - api_method :cast_quickvote, :expects => [:int, :int, [[:int]]], :returns => [:string] + api_method :cast_quickvote, :expects => [:string, :int, [[:int]]], :returns => [:string] 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] ] end