Skip to content

Commit dbdcf19

Browse files
committed
remove displayFilter by users
1 parent b44e230 commit dbdcf19

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

apps/web/app/server/api/attendees.get.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@ export default defineEventHandler(async (event) => {
1313
const activatedAttendees: AttendeeInfo = {
1414
type: 'activated-attendee',
1515
title: 'activated-attendee',
16-
list: attendees
17-
.filter((attendee) => {
18-
return attendee.user_id !== 'f5087332-0381-4fc7-8ffb-616475842842' && attendee.user_id !== 'c77d6932-7bd6-4421-a80a-06b99162ae6a' && attendee.user_id !== '44687b52-9c76-4665-8e11-e2255a4dfc93'
19-
}),
16+
list: attendees,
2017
}
2118

2219
return { activatedAttendees }

0 commit comments

Comments
 (0)