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