mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	Ensure public repositories in private organizations are visible and fix admin organizations list (#11465) (#11474)
* Ensure that we can see public repositories in private organization Fix #10144 (Again) Signed-off-by: Andrew Thornton <art27@cantab.net> * Fix Admin users and organizations page Signed-off-by: Andrew Thornton <art27@cantab.net> * Update models/repo_list.go Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
		| @@ -194,7 +194,6 @@ func RenderUserSearch(ctx *context.Context, opts *models.SearchUserOptions, tplN | ||||
| 	if opts.Page <= 1 { | ||||
| 		opts.Page = 1 | ||||
| 	} | ||||
| 	opts.Actor = ctx.User | ||||
|  | ||||
| 	var ( | ||||
| 		users   []*models.User | ||||
| @@ -252,6 +251,7 @@ func ExploreUsers(ctx *context.Context) { | ||||
| 	ctx.Data["IsRepoIndexerEnabled"] = setting.Indexer.RepoIndexerEnabled | ||||
|  | ||||
| 	RenderUserSearch(ctx, &models.SearchUserOptions{ | ||||
| 		Actor:       ctx.User, | ||||
| 		Type:        models.UserTypeIndividual, | ||||
| 		ListOptions: models.ListOptions{PageSize: setting.UI.ExplorePagingNum}, | ||||
| 		IsActive:    util.OptionalBoolTrue, | ||||
| @@ -272,6 +272,7 @@ func ExploreOrganizations(ctx *context.Context) { | ||||
| 	} | ||||
|  | ||||
| 	RenderUserSearch(ctx, &models.SearchUserOptions{ | ||||
| 		Actor:       ctx.User, | ||||
| 		Type:        models.UserTypeOrganization, | ||||
| 		ListOptions: models.ListOptions{PageSize: setting.UI.ExplorePagingNum}, | ||||
| 		Visible:     visibleTypes, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user