aboutsummaryrefslogtreecommitdiff
path: root/routes/api/v1/admin/org.go
diff options
context:
space:
mode:
Diffstat (limited to 'routes/api/v1/admin/org.go')
-rw-r--r--routes/api/v1/admin/org.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/routes/api/v1/admin/org.go b/routes/api/v1/admin/org.go
deleted file mode 100644
index 5f02288c..00000000
--- a/routes/api/v1/admin/org.go
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2015 The Gogs Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
-
-package admin
-
-import (
- api "github.com/gogs/go-gogs-client"
-
- "gogs.io/gogs/pkg/context"
- "gogs.io/gogs/routes/api/v1/org"
- "gogs.io/gogs/routes/api/v1/user"
-)
-
-func CreateOrg(c *context.APIContext, form api.CreateOrgOption) {
- org.CreateOrgForUser(c, form, user.GetUserByParams(c))
-}