org.go 294 B

1234567891011121314
  1. package admin
  2. import (
  3. "gitote/gitote/pkg/context"
  4. "gitote/gitote/routes/api/v1/org"
  5. "gitote/gitote/routes/api/v1/user"
  6. api "gitlab.com/gitote/go-gitote-client"
  7. )
  8. func CreateOrg(c *context.APIContext, form api.CreateOrgOption) {
  9. org.CreateOrgForUser(c, form, user.GetUserByParams(c))
  10. }