* List the user's gists * @see https://developer.github.com/v3/gists/#list-a-users-gists * @param {Requestable.callback} [cb] - will receive the list of gists * @return {Promise} - the promise for the http request
(cb)
| 108 | * @return {Promise} - the promise for the http request |
| 109 | */ |
| 110 | listGists(cb) { |
| 111 | return this._request('GET', this.__getScopedUrl('gists'), null, cb); |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * List the user's notifications |
no test coverage detected