aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gogs.go2
-rw-r--r--routers/api/v1/repo/repo.go2
-rw-r--r--templates/.VERSION2
3 files changed, 3 insertions, 3 deletions
diff --git a/gogs.go b/gogs.go
index f0ba3239..42add979 100644
--- a/gogs.go
+++ b/gogs.go
@@ -16,7 +16,7 @@ import (
"github.com/gogits/gogs/pkg/setting"
)
-const APP_VER = "0.11.15.0605"
+const APP_VER = "0.11.16.0605"
func init() {
setting.AppVer = APP_VER
diff --git a/routers/api/v1/repo/repo.go b/routers/api/v1/repo/repo.go
index 1095f08d..b4be4247 100644
--- a/routers/api/v1/repo/repo.go
+++ b/routers/api/v1/repo/repo.go
@@ -220,7 +220,7 @@ func Migrate(c *context.APIContext, f form.MigrateRepo) {
c.Error(500, "GetUserByID", err)
}
return
- } else if !org.IsOrganization() {
+ } else if !org.IsOrganization() && !c.User.IsAdmin {
c.Error(403, "", "Given user is not an organization")
return
}
diff --git a/templates/.VERSION b/templates/.VERSION
index 460b530d..250a5040 100644
--- a/templates/.VERSION
+++ b/templates/.VERSION
@@ -1 +1 @@
-0.11.15.0605 \ No newline at end of file
+0.11.16.0605 \ No newline at end of file