Sha256: cc2d75a63019e701c41873299cd711c36c2bdc17ffb94ed1d3617ee34c3d5a1b
Contents?: true
Size: 644 Bytes
Versions: 5
Compression:
Stored size: 644 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) # get user notifications client.notifications(username: 'discourse')
Version data entries
5 entries across 5 versions & 1 rubygems