RemoveOrgRepo removes all team-repository relations of organization.
(repoID int64)
| 92 | |
| 93 | // RemoveOrgRepo removes all team-repository relations of organization. |
| 94 | func (org *User) RemoveOrgRepo(repoID int64) error { |
| 95 | return org.removeOrgRepo(x, repoID) |
| 96 | } |
| 97 | |
| 98 | // CreateOrganization creates record of a new organization. |
| 99 | func CreateOrganization(org, owner *User) (err error) { |
nothing calls this directly
no test coverage detected