1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Only show accessible teams in dashboard dropdown list (#19642) (#19645)

Fixes #19637
This commit is contained in:
Jimmy Praet
2022-05-07 17:50:34 +02:00
committed by GitHub
parent 59d132f0b3
commit c8a83ace59
2 changed files with 1 additions and 7 deletions

View File

@@ -70,12 +70,6 @@ func HandleOrgAssignment(ctx *Context, args ...bool) {
org := ctx.Org.Organization
ctx.Data["Org"] = org
teams, err := org.LoadTeams()
if err != nil {
ctx.ServerError("LoadTeams", err)
}
ctx.Data["OrgTeams"] = teams
// Admin has super access.
if ctx.IsSigned && ctx.User.IsAdmin {
ctx.Org.IsOwner = true