* Get Team information * @see https://developer.github.com/v3/orgs/teams/#get-team * @param {Requestable.callback} [cb] - will receive the team * @return {Promise} - the promise for the http request
(cb)
| 31 | * @return {Promise} - the promise for the http request |
| 32 | */ |
| 33 | getTeam(cb) { |
| 34 | log(`Fetching Team ${this.__teamId}`); |
| 35 | return this._request('Get', `/teams/${this.__teamId}`, undefined, cb); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * List the Team's repositories |