Browse Source

api/repo: fix admin migrate repo for non-org users (#4479)

pull/4551/head
Unknwon 7 years ago
parent
commit
c0be055541
No known key found for this signature in database
GPG Key ID: 25B575AE3213B2B3
  1. 2
      gogs.go
  2. 2
      routers/api/v1/repo/repo.go
  3. 2
      templates/.VERSION

2
gogs.go

@ -16,7 +16,7 @@ import (
"github.com/gogits/gogs/pkg/setting" "github.com/gogits/gogs/pkg/setting"
) )
const APP_VER = "0.11.15.0605" const APP_VER = "0.11.16.0605"
func init() { func init() {
setting.AppVer = APP_VER setting.AppVer = APP_VER

2
routers/api/v1/repo/repo.go

@ -220,7 +220,7 @@ func Migrate(c *context.APIContext, f form.MigrateRepo) {
c.Error(500, "GetUserByID", err) c.Error(500, "GetUserByID", err)
} }
return return
} else if !org.IsOrganization() { } else if !org.IsOrganization() && !c.User.IsAdmin {
c.Error(403, "", "Given user is not an organization") c.Error(403, "", "Given user is not an organization")
return return
} }

2
templates/.VERSION

@ -1 +1 @@
0.11.15.0605 0.11.16.0605
Loading…
Cancel
Save