* Get a milestone * @see https://developer.github.com/v3/issues/milestones/#get-a-single-milestone * @param {string} milestone - the id of the milestone to fetch * @param {Requestable.callback} [cb] - will receive the milestone * @return {Promise} - the promise for the http request
(milestone, cb)
| 154 | * @return {Promise} - the promise for the http request |
| 155 | */ |
| 156 | getMilestone(milestone, cb) { |
| 157 | return this._request('GET', `/repos/${this.__repository}/milestones/${milestone}`, null, cb); |
| 158 | } |
| 159 | |
| 160 | /** |
| 161 | * Create a new milestone |