mirror of
https://github.com/gogs/gogs.git
synced 2025-12-20 15:20:01 +01:00
api/repo: fix admin migrate repo for non-org users (#4479)
This commit is contained in:
2
gogs.go
2
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
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
0.11.15.0605
|
||||
0.11.16.0605
|
||||
Reference in New Issue
Block a user