Sha256: 21470057a3fb089110c6e0a4117be4d9274d63a8c42fdaadfb9bffaf27613b88

Contents?: true

Size: 809 Bytes

Versions: 5

Compression:

Stored size: 809 Bytes

Contents

$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__)
require File.expand_path('../../lib/discourse_api', __FILE__)

client = DiscourseApi::Client.new("http://localhost:3000")
client.api_key = "YOUR_API_KEY"
client.api_username = "YOUR_USERNAME"

# update username from "robin" to "batman"
puts client.update_username("robin", "batman")
# update name of user whose username is "batman"
puts client.update_user("batman", name: "Bruce Wayne")
# update email of user whose username is "batman"
puts client.update_email("batman", "batman@gotham.com")
# update avatar of user whose username is "batman"
puts client.update_avatar("batman", "http://meta-discourse.r.worldssl.net/uploads/default/2497/724a6ef2e79d2bc7.png")
# log out everywhere and refresh browser of user whose id is "2"
puts client.log_out(2)

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
discourse_api-0.3.6 examples/update_user.rb
discourse_api-0.3.0 examples/update_user.rb
discourse_api-0.2.9 examples/update_user.rb
discourse_api-0.2.8 examples/update_user.rb
discourse_api-0.2.7 examples/update_user.rb