mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Only show accessible teams in dashboard dropdown list (#19642)
Fixes #19637
This commit is contained in:
		@@ -72,12 +72,6 @@ func HandleOrgAssignment(ctx *Context, args ...bool) {
 | 
				
			|||||||
	ctx.ContextUser = org.AsUser()
 | 
						ctx.ContextUser = org.AsUser()
 | 
				
			||||||
	ctx.Data["Org"] = org
 | 
						ctx.Data["Org"] = org
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	teams, err := org.LoadTeams()
 | 
					 | 
				
			||||||
	if err != nil {
 | 
					 | 
				
			||||||
		ctx.ServerError("LoadTeams", err)
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
	ctx.Data["OrgTeams"] = teams
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	// Admin has super access.
 | 
						// Admin has super access.
 | 
				
			||||||
	if ctx.IsSigned && ctx.Doer.IsAdmin {
 | 
						if ctx.IsSigned && ctx.Doer.IsAdmin {
 | 
				
			||||||
		ctx.Org.IsOwner = true
 | 
							ctx.Org.IsOwner = true
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -61,7 +61,7 @@
 | 
				
			|||||||
							<a class="{{if not $.Team}}active selected{{end}} item" title="{{.i18n.Tr "all"}}" href="{{$.Org.OrganisationLink}}/{{if $.PageIsIssues}}issues{{else if $.PageIsPulls}}pulls{{else if $.PageIsMilestonesDashboard}}milestones{{else}}dashboard{{end}}">
 | 
												<a class="{{if not $.Team}}active selected{{end}} item" title="{{.i18n.Tr "all"}}" href="{{$.Org.OrganisationLink}}/{{if $.PageIsIssues}}issues{{else if $.PageIsPulls}}pulls{{else if $.PageIsMilestonesDashboard}}milestones{{else}}dashboard{{end}}">
 | 
				
			||||||
								{{.i18n.Tr "all"}}
 | 
													{{.i18n.Tr "all"}}
 | 
				
			||||||
							</a>
 | 
												</a>
 | 
				
			||||||
							{{range .OrgTeams}}
 | 
												{{range .Teams}}
 | 
				
			||||||
								{{if not .IncludesAllRepositories}}
 | 
													{{if not .IncludesAllRepositories}}
 | 
				
			||||||
									<a class="{{if $.Team}}{{if eq $.Team.ID .ID}}active selected{{end}}{{end}} item" title="{{.Name}}" href="{{$.Org.OrganisationLink}}/{{if $.PageIsIssues}}issues{{else if $.PageIsPulls}}pulls{{else if $.PageIsMilestonesDashboard}}milestones{{else}}dashboard{{end}}/{{.Name}}">
 | 
														<a class="{{if $.Team}}{{if eq $.Team.ID .ID}}active selected{{end}}{{end}} item" title="{{.Name}}" href="{{$.Org.OrganisationLink}}/{{if $.PageIsIssues}}issues{{else if $.PageIsPulls}}pulls{{else if $.PageIsMilestonesDashboard}}milestones{{else}}dashboard{{end}}/{{.Name}}">
 | 
				
			||||||
										{{.Name}}
 | 
															{{.Name}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user