We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d6b8ac commit ca930ddCopy full SHA for ca930dd
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