* Edit a column * @see https://developer.github.com/v3/projects/columns/#update-a-project-column * @param {string} colId - the column id * @param {Object} options - the description of the column * @param {Requestable.callback} cb - will receive the modified column * @return {Prom
(colId, options, cb)
| 94 | * @return {Promise} - the promise for the http request |
| 95 | */ |
| 96 | updateProjectColumn(colId, options, cb) { |
| 97 | return this._request('PATCH', `/projects/columns/${colId}`, options, cb); |
| 98 | } |
| 99 | |
| 100 | /** |
| 101 | * Delete a column |