Sha256: 8305ad9d8d63eea418ac60029d902bb397dae9041733e5c9efbb3e2c95dabf38
Contents?: true
Size: 1000 Bytes
Versions: 2
Compression:
Stored size: 1000 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" # get badges puts client.badges # get badges for a user puts client.user_badges("test-user") # Grants a badge to a user. puts client.grant_user_badge(badge_id: 9, username: "test-user", reason: "Really nice person") # Creates a new badge ### # Required params: # :name, :badge_type_id (gold: 1, bronze: 3, silver: 2) # Optional params: # :description, :allow_title, :multiple_grant, :icon, :listable, # :target_posts, :query, :enabled, :auto_revoke, :badge_grouping_id, # :trigger, :show_posts, :image, :long_description ### puts client.create_badge(name: "Shiny new badge", badge_type_id: 1)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
discourse_api-2.0.1 | examples/badges.rb |
discourse_api-2.0.0 | examples/badges.rb |