1234567891011121314151617 |
- package admin
- import (
- api "github.com/gogs/go-gogs-client"
- "github.com/gogs/gogs/pkg/context"
- "github.com/gogs/gogs/routes/api/v1/org"
- "github.com/gogs/gogs/routes/api/v1/user"
- )
- func CreateOrg(c *context.APIContext, form api.CreateOrgOption) {
- org.CreateOrgForUser(c, form, user.GetUserByParams(c))
- }
|