* Get a particular issue * @see https://developer.github.com/v3/issues/#get-a-single-issue * @param {number} issue - the issue number to fetch * @param {Requestable.callback} [cb] - will receive the issue * @return {Promise} - the promise for the http request
(issue, cb)
| 132 | * @return {Promise} - the promise for the http request |
| 133 | */ |
| 134 | getIssue(issue, cb) { |
| 135 | return this._request('GET', `/repos/${this.__repository}/issues/${issue}`, null, cb); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * List the milestones for the repository |