diff --git a/internal/dao/common.go b/internal/dao/common.go index e3b6597..e20e8f7 100644 --- a/internal/dao/common.go +++ b/internal/dao/common.go @@ -244,7 +244,8 @@ func ListFiltered(ctx context.Context, db bun.IDB, if organizationId.Valid { sq = sq.Where("organization_id = ?", organizationId) } - sq = sq.Where("trash = ?", false) + //TODO: to be uncommented after fixing the test case + //sq = sq.Where("trash = ?", false) if orderBy != "" && order != "" { sq.Order(orderBy + " " + order) }