Sha256: eb20b0403255fcc47f0cfd8c0d7a985dd13d5b421c8cb0fe6b67da196cef247f

Contents?: true

Size: 811 Bytes

Versions: 18

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

18 entries across 18 versions & 1 rubygems

Version Path
discourse_api-1.1.0 examples/polls.rb
discourse_api-1.0.0 examples/polls.rb
discourse_api-0.48.1 examples/polls.rb
discourse_api-0.48.0 examples/polls.rb
discourse_api-0.47.0 examples/polls.rb
discourse_api-0.46.0 examples/polls.rb
discourse_api-0.45.1 examples/polls.rb
discourse_api-0.45.0 examples/polls.rb
discourse_api-0.44.0 examples/polls.rb
discourse_api-0.43.1 examples/polls.rb
discourse_api-0.43.0 examples/polls.rb
discourse_api-0.42.0 examples/polls.rb
discourse_api-0.41.0 examples/polls.rb
discourse_api-0.40.0 examples/polls.rb
discourse_api-0.39.3 examples/polls.rb
discourse_api-0.39.2 examples/polls.rb
discourse_api-0.39.1 examples/polls.rb
discourse_api-0.39.0 examples/polls.rb