mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 20:36:07 +01:00 
			
		
		
		
	Works in both organization and repository project boards Fixes #21846 Replaces #21963 Replaces #27117  **Note** that implementation was made intentionally to work same as in issue list so that URL can be bookmarked for quick access with predefined filters in URL
		
			
				
	
	
		
			23 lines
		
	
	
		
			465 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			465 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package user
 | 
						|
 | 
						|
import (
 | 
						|
	"sort"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/models/user"
 | 
						|
)
 | 
						|
 | 
						|
func MakeSelfOnTop(doer *user.User, users []*user.User) []*user.User {
 | 
						|
	if doer != nil {
 | 
						|
		sort.Slice(users, func(i, j int) bool {
 | 
						|
			if users[i].ID == users[j].ID {
 | 
						|
				return false
 | 
						|
			}
 | 
						|
			return users[i].ID == doer.ID // if users[i] is self, put it before others, so less=true
 | 
						|
		})
 | 
						|
	}
 | 
						|
	return users
 | 
						|
}
 |