Sha256: 3ff4c54afb8ad954d2602481b6e0cb80e6f948d9f061269ce321c07ea8ab2696
Contents?: true
Size: 544 Bytes
Versions: 18
Compression:
Stored size: 544 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" client.sync_sso( sso_secret: "discourse_sso_rocks", name: "Test Name", username: "test_name", email: "name@example.com", external_id: "2" )
Version data entries
18 entries across 18 versions & 1 rubygems