Sha256: 28d188a86d1221193c2370cba65b5bf51b327965d2fcfb25daf563fb975e5c7d
Contents?: true
Size: 587 Bytes
Versions: 18
Compression:
Stored size: 587 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" # create user user = client.create_user( name: "Bruce Wayne", email: "bruce@wayne.com", username: "batman", password: "WhySoSerious" ) # activate user client.activate(user["user_id"])
Version data entries
18 entries across 18 versions & 1 rubygems