1
0

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

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(),