summaryrefslogtreecommitdiff
path: root/webapp/app/api/twilio/webhook-local/route.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/app/api/twilio/webhook-local/route.ts')
-rw-r--r--webapp/app/api/twilio/webhook-local/route.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/webapp/app/api/twilio/webhook-local/route.ts b/webapp/app/api/twilio/webhook-local/route.ts
new file mode 100644
index 0000000..2dc5420
--- /dev/null
+++ b/webapp/app/api/twilio/webhook-local/route.ts
@@ -0,0 +1,3 @@
+export async function GET() {
+ return Response.json({ webhookUrl: process.env.TWILIO_WEBHOOK_URL });
+}