Sha256: 2f10f7af2f69a5be285c6df75a155c7242edccf90107caa2a0ba9585a9a654db

Contents?: true

Size: 600 Bytes

Versions: 2

Compression:

Stored size: 600 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

2 entries across 2 versions & 1 rubygems

Version Path
discourse_api-2.0.1 examples/create_user.rb
discourse_api-2.0.0 examples/create_user.rb