From c0be05554152f596e94df474799a620637943a87 Mon Sep 17 00:00:00 2001 From: Unknwon Date: Mon, 5 Jun 2017 17:11:57 -0400 Subject: [PATCH] api/repo: fix admin migrate repo for non-org users (#4479) --- gogs.go | 2 +- routers/api/v1/repo/repo.go | 2 +- templates/.VERSION | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gogs.go b/gogs.go index f0ba32396..42add9799 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 1095f08d3..b4be42471 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 460b530d2..250a50408 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