* Create a team * @see https://developer.github.com/v3/orgs/teams/#create-team * @param {object} options - Team creation parameters * @param {string} options.name - The name of the team * @param {string} [options.description] - Team description * @param {string} [options.repo_nam
(options, cb)
| 91 | * @return {Promise} - the promise for the http request |
| 92 | */ |
| 93 | createTeam(options, cb) { |
| 94 | return this._request('POST', `/orgs/${this.__name}/teams`, options, cb); |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * Get information about all projects |