* Delete a project * @see https://developer.github.com/v3/projects/#delete-a-project * @param {Requestable.callback} cb - will receive true if the operation is successful * @return {Promise} - the promise for the http request
(cb)
| 50 | * @return {Promise} - the promise for the http request |
| 51 | */ |
| 52 | deleteProject(cb) { |
| 53 | return this._request('DELETE', `/projects/${this.__id}`, null, cb); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Get information about all columns of a project |
no test coverage detected