From 2af769b314c82e3022935da504a37158c9e0f136 Mon Sep 17 00:00:00 2001 From: alma Date: Mon, 5 May 2025 13:30:43 +0200 Subject: [PATCH] build fix --- app/api/calendars/[id]/events/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/api/calendars/[id]/events/route.ts b/app/api/calendars/[id]/events/route.ts index 09275052..9795c6dc 100644 --- a/app/api/calendars/[id]/events/route.ts +++ b/app/api/calendars/[id]/events/route.ts @@ -156,6 +156,7 @@ export async function POST(req: NextRequest, props: { params: Promise<{ id: stri location, isAllDay: isAllDay || false, calendarId: params.id, + userId: session.user.username, }, });