mirror of
https://github.com/go-gitea/gitea.git
synced 2025-07-13 08:54:58 +02:00
Populate indexer search options correctly when filtering for any assignee
This commit is contained in:
parent
8f6f6306f8
commit
520d29ce34
@ -47,6 +47,8 @@ func ToSearchOptions(keyword string, opts *issues_model.IssuesOptions) *SearchOp
|
|||||||
|
|
||||||
if opts.AssigneeID.Value() == db.NoConditionID {
|
if opts.AssigneeID.Value() == db.NoConditionID {
|
||||||
searchOpt.AssigneeID = optional.Some[int64](0) // FIXME: this is inconsistent from other places, 0 means "no assignee"
|
searchOpt.AssigneeID = optional.Some[int64](0) // FIXME: this is inconsistent from other places, 0 means "no assignee"
|
||||||
|
} else if opts.AssigneeID.Value() == db.AnyConditionID {
|
||||||
|
searchOpt.AnyAssigneeOnly = true
|
||||||
} else if opts.AssigneeID.Value() != 0 {
|
} else if opts.AssigneeID.Value() != 0 {
|
||||||
searchOpt.AssigneeID = opts.AssigneeID
|
searchOpt.AssigneeID = opts.AssigneeID
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user