mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 15:54:25 +00:00
4ab6fc62d2
Works in both organization and repository project boards Fixes #21846 Replaces #21963 Replaces #27117 ![image](https://github.com/user-attachments/assets/1837ace8-3de2-444f-a153-e166bd0da2c0) **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
|
|
}
|