RemoveOrgRepo removes all team-repository relations of given organization.
(orgID, repoID int64)
| 445 | |
| 446 | // RemoveOrgRepo removes all team-repository relations of given organization. |
| 447 | func RemoveOrgRepo(orgID, repoID int64) error { |
| 448 | return removeOrgRepo(x, orgID, repoID) |
| 449 | } |
| 450 | |
| 451 | func (org *User) getUserTeams(e Engine, userID int64, cols ...string) ([]*Team, error) { |
| 452 | teams := make([]*Team, 0, org.NumTeams) |
nothing calls this directly
no test coverage detected