class Github::Orgs::Teams
def delete(team_id, params={})
github.orgs.teams.delete 'team-id'
github = Github.new :oauth_token => '...'
= Examples
In order to delete a team, the authenticated user must be an owner of the org that the team is associated with
Delete a team
def delete(team_id, params={}) assert_presence_of team_id normalize! params delete_request("/teams/#{team_id}", params) end