* Get information about all projects * @see https://developer.github.com/v3/projects/#list-organization-projects * @param {Requestable.callback} [cb] - will receive the list of projects * @return {Promise} - the promise for the http request
(cb)
| 101 | * @return {Promise} - the promise for the http request |
| 102 | */ |
| 103 | listProjects(cb) { |
| 104 | return this._requestAllPages(`/orgs/${this.__name}/projects`, {AcceptHeader: 'inertia-preview'}, cb); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Create a new project |
nothing calls this directly
no test coverage detected