Files
dashcaddy.net/src/app/api/webhooks/stripe/route.ts
T

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