Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/Service/OverviewService.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ public function findUpcomingCards(string $userId): array {
}, $userBoards));

$foundCards = array_merge(
// private board: get cards with due date
$this->cardMapper->findAllWithDue($boardOwnerIds),
// private board: get all my assigned or unassigned cards
$this->cardMapper->findToMeOrNotAssignedCards($boardOwnerIds, $userId),
// shared board: get all my assigned or unassigned cards
$this->cardMapper->findToMeOrNotAssignedCards($boardSharedIds, $userId)
);
Expand Down
Loading