* List the orgs that the user belongs to * @see https://developer.github.com/v3/orgs/#list-user-organizations * @param {Requestable.callback} [cb] - will receive the list of organizations * @return {Promise} - the promise for the http request
(cb)
| 78 | * @return {Promise} - the promise for the http request |
| 79 | */ |
| 80 | listOrgs(cb) { |
| 81 | return this._request('GET', this.__getScopedUrl('orgs'), null, cb); |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * List followers of a user |
no test coverage detected