class Github::Orgs::Teams
def list_members(team_id, params={})
github.orgs.teams.list_members 'team-id' { |member| ... }
github.orgs.teams.list_members 'team-id'
github = Github.new :oauth_token => '...'
= Examples
In order to list members in a team, the authenticated user must be a member of the team.
List team members
def list_members(team_id, params={}) _validate_presence_of team_id normalize! params response = get_request("/teams/#{team_id}/members", params) return response unless block_given? response.each { |el| yield el } end