forked from mirror/gitea
Fix orgs not being displayed on create repo form (#11279)
This commit is contained in:
parent
ce66ca7f9f
commit
b7c82cd1a9
@ -62,6 +62,18 @@ func checkContextUser(ctx *context.Context, uid int64) *models.User {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if !ctx.User.IsAdmin {
|
||||||
|
orgsAvailable := []*models.User{}
|
||||||
|
for i := 0; i < len(orgs); i++ {
|
||||||
|
if orgs[i].CanCreateRepo() {
|
||||||
|
orgsAvailable = append(orgsAvailable, orgs[i])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ctx.Data["Orgs"] = orgsAvailable
|
||||||
|
} else {
|
||||||
|
ctx.Data["Orgs"] = orgs
|
||||||
|
}
|
||||||
|
|
||||||
// Not equal means current user is an organization.
|
// Not equal means current user is an organization.
|
||||||
if uid == ctx.User.ID || uid == 0 {
|
if uid == ctx.User.ID || uid == 0 {
|
||||||
return ctx.User
|
return ctx.User
|
||||||
@ -83,14 +95,6 @@ func checkContextUser(ctx *context.Context, uid int64) *models.User {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if !ctx.User.IsAdmin {
|
if !ctx.User.IsAdmin {
|
||||||
orgsAvailable := []*models.User{}
|
|
||||||
for i := 0; i < len(orgs); i++ {
|
|
||||||
if orgs[i].CanCreateRepo() {
|
|
||||||
orgsAvailable = append(orgsAvailable, orgs[i])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
ctx.Data["Orgs"] = orgsAvailable
|
|
||||||
|
|
||||||
canCreate, err := org.CanCreateOrgRepo(ctx.User.ID)
|
canCreate, err := org.CanCreateOrgRepo(ctx.User.ID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.ServerError("CanCreateOrgRepo", err)
|
ctx.ServerError("CanCreateOrgRepo", err)
|
||||||
|
Loading…
Reference in New Issue
Block a user