mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
8 lines
257 B
TypeScript
8 lines
257 B
TypeScript
import { handlerTriggerWebhooks } from '@documenso/lib/server-only/webhooks/trigger/handler';
|
|
|
|
import type { Route } from './+types/webhook.trigger';
|
|
|
|
export async function action({ request }: Route.ActionArgs) {
|
|
return handlerTriggerWebhooks(request);
|
|
}
|