* Edit Team information * @see https://developer.github.com/v3/orgs/teams/#edit-team * @param {object} options - Parameters for team edit * @param {string} options.name - The name of the team * @param {string} [options.description] - Team description * @param {string} [options.re
(options, cb)
| 59 | * @return {Promise} - the promise for the http request |
| 60 | */ |
| 61 | editTeam(options, cb) { |
| 62 | log(`Editing Team ${this.__teamId}`); |
| 63 | return this._request('PATCH', `/teams/${this.__teamId}`, options, cb); |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * List the users who are members of the Team |