mirror of https://github.com/go-gitea/gitea.git
Add option to filter board cards by labels and assignees (#31999)
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 URLpull/31841/head^2
parent
20d7707124
commit
4ab6fc62d2
@ -0,0 +1,22 @@
|
|||||||
|
// 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
|
||||||
|
}
|
@ -1,7 +1,7 @@
|
|||||||
// Copyright 2023 The Gitea Authors. All rights reserved.
|
// Copyright 2023 The Gitea Authors. All rights reserved.
|
||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
package repo
|
package user
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"testing"
|
"testing"
|
Loading…
Reference in New Issue