fix adding optional ActionSet

This commit is contained in:
taschenuhr 2024-02-28 16:31:47 +01:00
parent b8941403d1
commit cc09147b4b

View file

@ -151,17 +151,15 @@ class Teams extends NotificationProvider {
}; };
if (dashboardUrl) { if (dashboardUrl) {
payload.attachments.forEach(element => { payload.attachments[0].content.body.push({
element.content.push({ "type": "ActionSet",
"type": "ActionSet", "actions": [
"actions": [ {
{ "type": "Action.OpenUrl",
"type": "Action.OpenUrl", "title": "Visit Uptime Kuma",
"title": "Visit Uptime Kuma", "url": dashboardUrl
"url": dashboardUrl }
} ]
]
});
}); });
} }