module Github::Orgs::Teams

def remove_team_repo(team_name, user_name, repo_name, params={})


@github.orgs.remove_team_repo 'team-name', 'user-name', 'repo-name'
@github = Github.new :oauth_token => '...'
= Examples

note: This does not delete the repo, it just removes it from the team.
an owner of the org that the team is associated with.
In order to add a repo to a team, the authenticated user must be
Remove a team repository
def remove_team_repo(team_name, user_name, repo_name, params={})
  _validate_presence_of team_name, user_name, repo_name
  _normalize_params_keys(params)
  delete("/teams/#{team_name}/repos/#{user_name}/#{repo_name}", params)
end