* Create a new issue * @see https://developer.github.com/v3/issues/#create-an-issue * @param {Object} issueData - the issue to create * @param {Requestable.callback} [cb] - will receive the created issue * @return {Promise} - the promise for the http request
(issueData, cb)
| 30 | * @return {Promise} - the promise for the http request |
| 31 | */ |
| 32 | createIssue(issueData, cb) { |
| 33 | return this._request('POST', `/repos/${this.__repository}/issues`, issueData, cb); |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * List the issues for the repository |