Sha256: c8a3b8e2336302555977c87976825ebcb8e16c74bb0b8dc4ec4364a606e65fad

Contents?: true

Size: 1.17 KB

Versions: 27

Compression:

Stored size: 1.17 KB

Contents

$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"

response = client.create_topic(
    category: "Boing Boing",
    skip_validations: true,
    auto_track: false,
    title: "Concert Master: A new way to choose",
    raw: "This is the raw markdown for my post"
)

# get topic_id and topic_slug from response
topic_id = response['topic_id']
topic_slug = response['topic_slug']


##
# available options (guessing from reading discourse source)
# status can be: ['autoclose', 'closed', 'archived', 'disabled', 'visible']
# enabled can be: [true, false]
##

# lock topic (note: api_username determines user that is performing action)
params = {status: 'closed', enabled: true, api_username: "YOUR USERNAME/USERS USERNAME"}
client.change_topic_status(topic_slug, topic_id, params)

# unlock topic (note: api_username determines user that is performing action)
params = {status: 'closed', enabled: false, api_username: "YOUR USERNAME/USERS USERNAME"}
client.change_topic_status(topic_slug, topic_id, params)

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
discourse_api-0.34.0 examples/change_topic_status.rb
discourse_api-0.33.0 examples/change_topic_status.rb
discourse_api-0.32.0 examples/change_topic_status.rb
discourse_api-0.31.0 examples/change_topic_status.rb
discourse_api-0.30.0 examples/change_topic_status.rb
discourse_api-0.29.0 examples/change_topic_status.rb
discourse_api-0.28.1 examples/change_topic_status.rb
discourse_api-0.28.0 examples/change_topic_status.rb
discourse_api-0.27.0 examples/change_topic_status.rb
discourse_api-0.26.0 examples/change_topic_status.rb
discourse_api-0.25.0 examples/change_topic_status.rb
discourse_api-0.24.0 examples/change_topic_status.rb
discourse_api-0.23.1 examples/change_topic_status.rb
discourse_api-0.23.0 examples/change_topic_status.rb
discourse_api-0.22.0 examples/change_topic_status.rb
discourse_api-0.20.1 examples/change_topic_status.rb
discourse_api-0.20.0 examples/change_topic_status.rb
discourse_api-0.19.0 examples/change_topic_status.rb
discourse_api-0.18.0 examples/change_topic_status.rb
discourse_api-0.17.0 examples/change_topic_status.rb