mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
8 lines
256 B
TypeScript
8 lines
256 B
TypeScript
import { stripeWebhookHandler } from '@documenso/ee/server-only/stripe/webhook/handler';
|
|
|
|
import type { Route } from './+types/webhook.trigger';
|
|
|
|
export async function action({ request }: Route.ActionArgs) {
|
|
return await stripeWebhookHandler(request);
|
|
}
|