GiteaForwarder/src/Server/Webhook.ts
BradBot_1 855e8c81e8 init
2023-02-22 22:57:04 +00:00

12 lines
480 B
TypeScript

export type WebhookRecievedCallback = (webhookId: string, webhook: Promise<any>) => void;
export function setupWebhookRoutes(router:any, webhookRecievedCallback:WebhookRecievedCallback):void {
router.post('/webhook/:webhook', (req: any, res: any) => {
const webhookId = req.params.webhook;
console.log("[WEB] Recieved webhook " + webhookId);
webhookRecievedCallback(webhookId, res.body);
res.statusCode = 200;
res.end();
});
}