Sha256: ddb98b981a5dcb0f966b270e11aacefb3637ff7412bd1a3624b725a4c9be6c2c

Contents?: true

Size: 514 Bytes

Versions: 2

Compression:

Stored size: 514 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"

# Bookmark topic
puts client.bookmark_topic(1418)

# Remove bookmark from topic
puts client.remove_topic_bookmark(1418)

Version data entries

2 entries across 2 versions & 1 rubygems

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