From 0b8e45a9b016a2beae867820ba5149b17552fb27 Mon Sep 17 00:00:00 2001 From: saravanakumardb1 Date: Sat, 21 Mar 2026 20:46:53 -0700 Subject: [PATCH] =?UTF-8?q?fix(admin-web):=20jobs=20proxy=20route=20missin?= =?UTF-8?q?g=20PATCH+DELETE=20exports=20=E2=80=94=20page=20uses=20PATCH=20?= =?UTF-8?q?in=20handleToggle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dashboards/admin-web/src/app/api/jobs/[...path]/route.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dashboards/admin-web/src/app/api/jobs/[...path]/route.ts b/dashboards/admin-web/src/app/api/jobs/[...path]/route.ts index b5893994..00165dbe 100644 --- a/dashboards/admin-web/src/app/api/jobs/[...path]/route.ts +++ b/dashboards/admin-web/src/app/api/jobs/[...path]/route.ts @@ -41,3 +41,9 @@ export async function POST(req: NextRequest, ctx: { params: Promise<{ path: stri export async function PUT(req: NextRequest, ctx: { params: Promise<{ path: string[] }> }) { return proxy(req, ctx); } +export async function PATCH(req: NextRequest, ctx: { params: Promise<{ path: string[] }> }) { + return proxy(req, ctx); +} +export async function DELETE(req: NextRequest, ctx: { params: Promise<{ path: string[] }> }) { + return proxy(req, ctx); +}