We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1ac9bdf + ca930dd commit 932f4e1Copy full SHA for 932f4e1
1 file changed
lib/Service/OverviewService.php
@@ -59,8 +59,8 @@ public function findUpcomingCards(string $userId): array {
59
}, $userBoards));
60
61
$foundCards = array_merge(
62
- // private board: get cards with due date
63
- $this->cardMapper->findAllWithDue($boardOwnerIds),
+ // private board: get all my assigned or unassigned cards
+ $this->cardMapper->findToMeOrNotAssignedCards($boardOwnerIds, $userId),
64
// shared board: get all my assigned or unassigned cards
65
$this->cardMapper->findToMeOrNotAssignedCards($boardSharedIds, $userId)
66
);
0 commit comments