We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c447de + 9ace2dd commit ab2f4d0Copy full SHA for ab2f4d0
1 file changed
lib/Service/OverviewService.php
@@ -34,8 +34,8 @@ public function findUpcomingCards(string $userId): array {
34
}, $userBoards));
35
36
$foundCards = array_merge(
37
- // private board: get cards with due date
38
- $this->cardMapper->findAllWithDue($boardOwnerIds),
+ // private board: get all my assigned or unassigned cards
+ $this->cardMapper->findToMeOrNotAssignedCards($boardOwnerIds, $userId),
39
// shared board: get all my assigned or unassigned cards
40
$this->cardMapper->findToMeOrNotAssignedCards($boardSharedIds, $userId)
41
);
0 commit comments