mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 16:23:06 +10:00
12 lines
324 B
TypeScript
12 lines
324 B
TypeScript
import { stripeWebhookHandler } from '@documenso/ee/server-only/stripe/webhook/handler';
|
|
|
|
// Todo
|
|
// export const config = {
|
|
// api: { bodyParser: false },
|
|
// };
|
|
import type { Route } from './+types/webhook.trigger';
|
|
|
|
export async function loader({ request }: Route.LoaderArgs) {
|
|
return stripeWebhookHandler(request);
|
|
}
|