Files
Beyhan Oğur 2a5b661443 first commit
2026-04-26 21:46:42 +03:00

11 lines
310 B
TypeScript

import { NextRequest } from "next/server"
import { handleImageProxyRequest } from "@/lib/api-proxy"
export async function PUT(
req: NextRequest,
context: { params: Promise<{ id: string }> }
) {
const { id } = await context.params
return handleImageProxyRequest(req, `/admin/settings/${id}`)
}