Files
linumiq-invoice/app/routes/webhooks.orders.updated.tsx
T
Gerhard Scheikl 5b2aa5d62b first version
2026-04-28 21:56:11 +02:00

11 lines
450 B
TypeScript

import type { ActionFunctionArgs } from "react-router";
import { authenticate } from "../shopify.server";
// Acknowledged but not yet acted on. Future: invalidate cached invoice
// snapshots when a relevant field on the order changes.
export const action = async ({ request }: ActionFunctionArgs) => {
const { shop, topic } = await authenticate.webhook(request);
console.log(`Received ${topic} webhook for ${shop}`);
return new Response();
};