* Get information about all cards of a column * @see https://developer.github.com/v3/projects/cards/#list-project-cards * @param {string} colId - the id of the column * @param {Requestable.callback} [cb] - will receive the list of cards * @return {Promise} - the promise for the http requ
(colId, cb)
| 164 | * @return {Promise} - the promise for the http request |
| 165 | */ |
| 166 | listColumnCards(colId, cb) { |
| 167 | return this._requestAllPages(`/projects/columns/${colId}/cards`, null, cb); |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Get information about a card |
no test coverage detected