From 2bfe3e0f45c98c8301780f9903b686da5f9ecf54 Mon Sep 17 00:00:00 2001 From: KMKoushik Date: Sun, 11 Aug 2024 10:29:25 +1000 Subject: [PATCH] Fix patch api --- apps/web/src/app/api/v1/[[...route]]/route.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web/src/app/api/v1/[[...route]]/route.ts b/apps/web/src/app/api/v1/[[...route]]/route.ts index afc0f92..25122a5 100644 --- a/apps/web/src/app/api/v1/[[...route]]/route.ts +++ b/apps/web/src/app/api/v1/[[...route]]/route.ts @@ -5,3 +5,4 @@ export const GET = handle(app); export const POST = handle(app); export const PUT = handle(app); export const DELETE = handle(app); +export const PATCH = handle(app);