From 8f768a4d356694cc6d6f14fe146a61be673d4d55 Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Mon, 17 Aug 2026 15:46:36 +0200 Subject: [PATCH] Returns and save the room link --- cloud/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cloud/app.py b/cloud/app.py index 379f171..de48e80 100644 --- a/cloud/app.py +++ b/cloud/app.py @@ -268,7 +268,7 @@ def alert(): if webex_room_id: alert_collection.update_one( {"_id": saved_alert.inserted_id}, - {"$set": {"webex_room_id": webex_room_id, "webex_room_title": room_title}} + {"$set": {"webex_room_id": webex_room_id, "webex_room_title": room_title, "webex_room_link": room_link}} ) # --- SEND SMS --- @@ -290,6 +290,7 @@ def alert(): "status": "success", "message": "Alert saved", "webex_room_id": webex_room_id, + "webex_room_url": room_link, "webex_status": webex_status, "sms_sent": sms_sent }), 200