1
0

feat(tasks): add searching via typesense

This commit is contained in:
kolaente
2023-08-28 12:14:50 +02:00
parent dee46d527a
commit 010b4ce783
8 changed files with 308 additions and 201 deletions

View File

@ -969,7 +969,7 @@ func (p *Project) Delete(s *xorm.Session, a web.Auth) (err error) {
// Delete all tasks on that project
// Using the loop to make sure all related entities to all tasks are properly deleted as well.
tasks, _, _, err := getRawTasksForProjects(s, []*Project{p}, a, &taskOptions{})
tasks, _, _, err := getRawTasksForProjects(s, []*Project{p}, a, &taskSearchOptions{})
if err != nil {
return
}