Files
taro-bot-teams/templates/webhook-overview-card.json
Björn Benouarets a1eca7baef init: Initial commit
2026-01-08 10:10:12 +01:00

32 lines
787 B
JSON

{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"text": "Webhooks Overview",
"size": "Large",
"weight": "Bolder",
"color": "Accent"
},
{
"type": "TextBlock",
"text": "Currently {webhook_count} webhooks are registered.",
"size": "Small",
"color": "Good",
"isSubtle": true,
"wrap": true
},
{
"type": "FactSet",
"facts": [
{
"title": "Webhook Count",
"value": "{webhook_count}"
}
]
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4"
}