We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccd4f2f commit 0acf697Copy full SHA for 0acf697
1 file changed
backend/biz/project/repo/project.go
@@ -91,6 +91,7 @@ func (r *ProjectRepo) List(ctx context.Context, uid uuid.UUID, cursor domain.Cur
91
Where(projecttask.HasTaskWith(task.And(
92
task.DeletedAtIsNil(),
93
task.UserID(uid),
94
+ task.StatusIn(consts.TaskStatusPending, consts.TaskStatusProcessing),
95
))).
96
Order(projecttask.ByCreatedAt(sql.OrderDesc()))
97
}).
0 commit comments