Sha256: 47a7f699bbbe5d28cd527e5e221fdaebbfa36f51f4a85a3494c090368469ed8d

Contents?: true

Size: 811 Bytes

Versions: 2

Compression:

Stored size: 811 Bytes

Contents

# frozen_string_literal: true

$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
require File.expand_path("../../lib/discourse_api", __FILE__)

config = DiscourseApi::ExampleHelper.load_yml

client = DiscourseApi::Client.new(config["host"] || "http://localhost:3000")
client.api_key = config["api_key"] || "YOUR_API_KEY"
client.api_username = config["api_username"] || "YOUR_USERNAME"

options = ["8b4736b1ae3dfb5a28088530f036f9e5"]
poll_option_votes = client.poll_vote post_id: 5, poll_name: "poll", options: options
puts poll_option_votes.body["vote"]

poll_option_votes = client.toggle_poll_status(post_id: 5, poll_name: "poll", status: "closed")
puts poll_option_votes[:body]["poll"]["status"]

poll_option_votes = client.poll_voters(post_id: 5, poll_name: "poll")
puts poll_option_votes["voters"]

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
discourse_api-2.0.1 examples/polls.rb
discourse_api-2.0.0 examples/polls.rb