* Create a new card * @see https://developer.github.com/v3/projects/cards/#create-a-project-card * @param {string} colId - the column id * @param {Object} options - the description of the card * @param {Requestable.callback} cb - will receive the newly created card * @return {Promise}
(colId, options, cb)
| 187 | * @return {Promise} - the promise for the http request |
| 188 | */ |
| 189 | createProjectCard(colId, options, cb) { |
| 190 | return this._request('POST', `/projects/columns/${colId}/cards`, options, cb); |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Edit a card |