From 08747ecb3dac60389bca7d0fe3276c7584089d52 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Sat, 20 Dec 2025 14:20:10 -0700 Subject: [PATCH] Gwug 6 --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index ef3931b..baab921 100644 --- a/index.js +++ b/index.js @@ -113,6 +113,8 @@ app.get('/', (req, res) => { app.post('/trig', async (req, res) => { console.log('Triggering call with data:', req.body); + trigCall(req.body.pageType, req.body.phone); + res.status(200).send('Call triggered'); }); app.listen(PORT, HOST, () => {