* List the Team's repositories * @see https://developer.github.com/v3/orgs/teams/#list-team-repos * @param {Requestable.callback} [cb] - will receive the list of repositories * @return {Promise} - the promise for the http request
(cb)
| 42 | * @return {Promise} - the promise for the http request |
| 43 | */ |
| 44 | listRepos(cb) { |
| 45 | log(`Fetching repositories for Team ${this.__teamId}`); |
| 46 | return this._requestAllPages(`/teams/${this.__teamId}/repos`, undefined, cb); |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Edit Team information |
no test coverage detected