fix(admin-web): jobs proxy route missing PATCH+DELETE exports — page uses PATCH in handleToggle
This commit is contained in:
parent
e5ffdad8e8
commit
0b8e45a9b0
@ -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);
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user