feat(tasks): find tasks by their identifier when searching with Typesense

This commit is contained in:
kolaente 2023-08-29 09:31:36 +02:00
parent 2ca193e63b
commit 748651447a
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ func (t *typesenseTaskSearcher) Search(opts *taskSearchOptions) (tasks []*Task,
params := &api.SearchCollectionParams{
Q: opts.search,
QueryBy: "title, description, comments.comment",
QueryBy: "title, identifier, description, comments.comment",
Page: pointer.Int(opts.page),
PerPage: pointer.Int(opts.perPage),
ExhaustiveSearch: pointer.True(),