mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
12 lines
331 B
TypeScript
12 lines
331 B
TypeScript
import { stripeWebhookHandler } from '@documenso/ee/server-only/stripe/webhook/handler';
|
|
|
|
// Todo: (RR7)
|
|
// export const config = {
|
|
// api: { bodyParser: false },
|
|
// };
|
|
import type { Route } from './+types/webhook.trigger';
|
|
|
|
export async function action({ request }: Route.ActionArgs) {
|
|
return stripeWebhookHandler(request);
|
|
}
|