Sha256: 47c03ad898c2815fceb3b2f03b7818b6f9217f490a97bf979fd0e9b1575ffd2b
Contents?: true
Size: 651 Bytes
Versions: 33
Compression:
Stored size: 651 Bytes
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" 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" ) # create Poll topic client.create_topic( category: "general", skip_validations: false, auto_track: false, title: "Your Favorite Color?", raw: "[poll name=color]\n- Green\n- Blue\n- Red\n[/poll]" )
Version data entries
33 entries across 33 versions & 1 rubygems