class Github::Client::Orgs::Teams
def list_repos(*args)
- Api: - public
Other tags:
- See: https://developer.github.com/v3/orgs/teams/#list-team-repos -
def list_repos(*args) arguments(args, required: [:id]) response = get_request("/teams/#{arguments.id}/repos", arguments.params) return response unless block_given? response.each { |el| yield el } end