Sha256: cd15c36dbaa6e18a6e935203bf7c80da38e496a91a155d6d88a975a10c5dea24
Contents?: true
Size: 574 Bytes
Versions: 2
Compression:
Stored size: 574 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" # watch an entire category client.category_set_user_notification_level(1, notification_level: 3) # mute a topic client.topic_set_user_notification_level(1, notification_level: 0)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
discourse_api-0.46.0 | examples/notifications.rb |
discourse_api-0.45.1 | examples/notifications.rb |