Sha256: cb2acd4e3f9b4b56b56339094d9f2ea6fbc67e18494f02fbba8378e73bf76a73

Contents?: true

Size: 699 Bytes

Versions: 3

Compression:

Stored size: 699 Bytes

Contents

# frozen_string_literal: true

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

client = DiscourseApi::Client.new("http://localhost:3000")
client.api_key = "YOUR_API_KEY"
client.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

3 entries across 3 versions & 1 rubygems

Version Path
discourse_api-0.38.0 examples/polls.rb
discourse_api-0.37.0 examples/polls.rb
discourse_api-0.36.0 examples/polls.rb