Skip to content

Commit 6dc8f68

Browse files
committed
Fix attendee count
1 parent d07a85d commit 6dc8f68

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

backend/app/Repository/Eloquent/CheckInListRepository.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ public function getCheckedInAttendeeCountById(int $checkInListId): CheckedInAtte
4141
JOIN ticket_check_in_lists tcil ON a.ticket_id = tcil.ticket_id
4242
WHERE a.deleted_at IS NULL
4343
AND tcil.deleted_at IS NULL
44+
AND a.status = 'ACTIVE'
4445
)
4546
SELECT
4647
cil.id AS check_in_list_id,

0 commit comments

Comments
 (0)