11 lines
247 B
TypeScript
11 lines
247 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
export async function POST() {
|
|
return NextResponse.json(
|
|
{
|
|
error: "Website-local Stripe webhooks are disabled. Use the external DashCaddy license service."
|
|
},
|
|
{ status: 410 }
|
|
);
|
|
}
|