mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 22:41:03 +00:00 
			
		
		
		
	These settings can allow users to only display the repositories explore page. Thanks to yp05327 and wxiaoguang ! --------- Co-authored-by: Giteabot <teabot@gitea.io> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com> (cherry picked from commit 9206fbb55fd28f21720072fce6a36cc22277934c) Conflicts: - templates/explore/navbar.tmpl Resolved by manually applying the last hunk to our template.
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			937 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			937 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2022 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package user
 | |
| 
 | |
| import (
 | |
| 	"net/http"
 | |
| 
 | |
| 	"code.gitea.io/gitea/models/db"
 | |
| 	user_model "code.gitea.io/gitea/models/user"
 | |
| 	"code.gitea.io/gitea/modules/optional"
 | |
| 	"code.gitea.io/gitea/modules/setting"
 | |
| 	"code.gitea.io/gitea/services/context"
 | |
| 	"code.gitea.io/gitea/services/convert"
 | |
| )
 | |
| 
 | |
| // SearchCandidates searches candidate users for dropdown list
 | |
| func SearchCandidates(ctx *context.Context) {
 | |
| 	users, _, err := user_model.SearchUsers(ctx, &user_model.SearchUserOptions{
 | |
| 		Actor:       ctx.Doer,
 | |
| 		Keyword:     ctx.FormTrim("q"),
 | |
| 		Type:        user_model.UserTypeIndividual,
 | |
| 		IsActive:    optional.Some(true),
 | |
| 		ListOptions: db.ListOptions{PageSize: setting.UI.MembersPagingNum},
 | |
| 	})
 | |
| 	if err != nil {
 | |
| 		ctx.ServerError("Unable to search users", err)
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.JSON(http.StatusOK, map[string]any{"data": convert.ToUsers(ctx, ctx.Doer, users)})
 | |
| }
 |