Admins are allowed to create repos for arbitrary Orgs
This commit is contained in:
parent
7ef9a05588
commit
a3eab8185d
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ func checkContextUser(ctx *middleware.Context, uid int64) *models.User {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check ownership of organization.
|
// Check ownership of organization.
|
||||||
if !org.IsOrganization() || !org.IsOwnedBy(ctx.User.Id) {
|
if !org.IsOrganization() || !(ctx.User.IsAdmin || org.IsOwnedBy(ctx.User.Id)) {
|
||||||
ctx.Error(403)
|
ctx.Error(403)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue