From 48220cb62df8213e30f7b4a431601e5ba5cdea1e Mon Sep 17 00:00:00 2001 From: Joe Carstairs <65492573+Sycamost@users.noreply.github.com> Date: Thu, 7 Mar 2024 20:34:10 +0000 Subject: Sends an empty TwiML response --- src/app.js | 3 --- 1 file changed, 3 deletions(-) (limited to 'src') diff --git a/src/app.js b/src/app.js index 3e1a28c..04d192a 100644 --- a/src/app.js +++ b/src/app.js @@ -5,9 +5,6 @@ const app = express(); app.post('/sms', (req, res) => { const twiml = new MessagingResponse(); - - twiml.message('The Robots are coming! Head for the hills!'); - res.type('text/xml').send(twiml.toString()); }); -- cgit v1.2.3