This commit is contained in:
David Nguyen
2025-02-12 23:17:43 +11:00
parent 1d7f3723bc
commit 12f3b7629e
12 changed files with 124 additions and 13 deletions

View File

@ -12,6 +12,6 @@ import type { Route } from './+types/webhook.trigger';
// },
// };
export async function loader({ request }: Route.LoaderArgs) {
export async function action({ request }: Route.ActionArgs) {
return handlerTriggerWebhooks(request);
}