summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-03-07 20:34:10 +0000
committerJoe Carstairs <65492573+Sycamost@users.noreply.github.com>2024-03-07 20:34:10 +0000
commit48220cb62df8213e30f7b4a431601e5ba5cdea1e (patch)
tree30f668eae385f7f69bd54235e3a20479e6e2fd53 /src
parentb8c096cb1615fb640b9c3dfd08fcf98d1a3913f8 (diff)
Sends an empty TwiML response
Diffstat (limited to 'src')
-rw-r--r--src/app.js3
1 files changed, 0 insertions, 3 deletions
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());
});