* Edit a project * @see https://developer.github.com/v3/projects/#update-a-project * @param {Object} options - the description of the project * @param {Requestable.callback} cb - will receive the modified project * @return {Promise} - the promise for the http request
(options, cb)
| 40 | * @return {Promise} - the promise for the http request |
| 41 | */ |
| 42 | updateProject(options, cb) { |
| 43 | return this._request('PATCH', `/projects/${this.__id}`, options, cb); |
| 44 | } |
| 45 | |
| 46 | /** |
| 47 | * Delete a project |