fix(admin-web): jobs proxy route missing PATCH+DELETE exports — page uses PATCH in handleToggle

This commit is contained in:
saravanakumardb1 2026-03-21 20:46:53 -07:00
parent e5ffdad8e8
commit 0b8e45a9b0

View File

@ -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);
}