* List the Teams in the Organization * @see https://developer.github.com/v3/orgs/teams/#list-teams * @param {Requestable.callback} [cb] - will receive the list of teams * @return {Promise} - the promise for the http request
(cb)
| 75 | * @return {Promise} - the promise for the http request |
| 76 | */ |
| 77 | getTeams(cb) { |
| 78 | return this._requestAllPages(`/orgs/${this.__name}/teams`, undefined, cb); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Create a team |
no test coverage detected