Module: BWAPI::Client::Me

Included in:
BWAPI::Client
Defined in:
lib/bwapi/client/me.rb

Overview

Me module for me endpoint and helper methods

Instance Method Summary collapse

Instance Method Details

#meHash

Get user information

Returns:

  • (Hash)

    User information



8
9
10
# File 'lib/bwapi/client/me.rb', line 8

def me
  get 'me'
end

#user_client_idString

Get users client id

Returns:

  • (String)

    Users client id



22
23
24
# File 'lib/bwapi/client/me.rb', line 22

def user_client_id
  me.client.id
end

#user_client_nameString

Get users client name

Returns:

  • (String)

    Users client name



15
16
17
# File 'lib/bwapi/client/me.rb', line 15

def user_client_name
  me.client.name
end

#user_idString

Get users id

Returns:

  • (String)

    Users role



29
30
31
# File 'lib/bwapi/client/me.rb', line 29

def user_id
  me.id
end