Module: BWAPI::Client::User
- Includes:
- Notifications
- Included in:
- BWAPI::Client
- Defined in:
- lib/bwapi/client/user.rb,
lib/bwapi/client/user/notifications.rb
Overview
User module for user endpoints and helper methods
Defined Under Namespace
Modules: Notifications
Instance Method Summary collapse
-
#api_role ⇒ String
Get users api role.
-
#ui_role ⇒ String
Get users ui role.
-
#update_user(opts) ⇒ Hashie::Mash
Update the current user.
-
#user ⇒ Hashie::Mash
Get the current user.
Methods included from Notifications
#delete_notification, #notifications, #update_notification
Instance Method Details
#api_role ⇒ String
Get users api role
44 45 46 |
# File 'lib/bwapi/client/user.rb', line 44 def api_role user.apiRole end |
#ui_role ⇒ String
Get users ui role
51 52 53 |
# File 'lib/bwapi/client/user.rb', line 51 def ui_role user.uiRole end |
#update_user(opts) ⇒ Hashie::Mash
Update the current user
37 38 39 |
# File 'lib/bwapi/client/user.rb', line 37 def update_user opts put "user", opts end |
#user ⇒ Hashie::Mash
Get the current user
11 12 13 |
# File 'lib/bwapi/client/user.rb', line 11 def user get "user" end |