* Get information about all columns of a project * @see https://developer.github.com/v3/projects/columns/#list-project-columns * @param {Requestable.callback} [cb] - will receive the list of columns * @return {Promise} - the promise for the http request
(cb)
| 60 | * @return {Promise} - the promise for the http request |
| 61 | */ |
| 62 | listProjectColumns(cb) { |
| 63 | return this._requestAllPages(`/projects/${this.__id}/columns`, null, cb); |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * Get information about a column |
no test coverage detected