* List the events for an issue * @see https://developer.github.com/v3/issues/events/#list-events-for-an-issue * @param {number} issue - the issue to get events for * @param {Requestable.callback} [cb] - will receive the list of events * @return {Promise} - the promise for the http re
(issue, cb)
| 52 | * @return {Promise} - the promise for the http request |
| 53 | */ |
| 54 | listIssueEvents(issue, cb) { |
| 55 | return this._request('GET', `/repos/${this.__repository}/issues/${issue}/events`, null, cb); |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * List comments on an issue |