* List the issues for the repository * @see https://developer.github.com/v3/issues/#list-issues-for-a-repository * @param {Object} options - filtering options * @param {Requestable.callback} [cb] - will receive the array of issues * @return {Promise} - the promise for the http reques
(options, cb)
| 41 | * @return {Promise} - the promise for the http request |
| 42 | */ |
| 43 | listIssues(options, cb) { |
| 44 | return this._requestAllPages(`/repos/${this.__repository}/issues`, options, cb); |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * List the events for an issue |
no test coverage detected