mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Merge pull request #2831 from odinuge/user-search-name
Make user search look in username, name and email
This commit is contained in:
		@@ -1137,9 +1137,12 @@ func SearchUserByName(opts *SearchUserOptions) (users []*User, _ int64, _ error)
 | 
				
			|||||||
		opts.Page = 1
 | 
							opts.Page = 1
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						searchQuery := "%" + opts.Keyword + "%"
 | 
				
			||||||
	users = make([]*User, 0, opts.PageSize)
 | 
						users = make([]*User, 0, opts.PageSize)
 | 
				
			||||||
	// Append conditions
 | 
						// Append conditions
 | 
				
			||||||
	sess := x.Where("lower_name like ?", "%"+opts.Keyword+"%").And("type = ?", opts.Type)
 | 
						sess := x.Where("lower_name like ?", searchQuery).
 | 
				
			||||||
 | 
							Or("full_name like ?", searchQuery).
 | 
				
			||||||
 | 
							And("type = ?", opts.Type)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	var countSess xorm.Session
 | 
						var countSess xorm.Session
 | 
				
			||||||
	countSess = *sess
 | 
						countSess = *sess
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user