* Get information about a column * @see https://developer.github.com/v3/projects/columns/#get-a-project-column * @param {string} colId - the id of the column * @param {Requestable.callback} cb - will receive the column information * @return {Promise} - the promise for the http reques
(colId, cb)
| 71 | * @return {Promise} - the promise for the http request |
| 72 | */ |
| 73 | getProjectColumn(colId, cb) { |
| 74 | return this._request('GET', `/projects/columns/${colId}`, null, cb); |
| 75 | } |
| 76 | |
| 77 | /** |
| 78 | * Create a new column |