init: Initial commit

This commit is contained in:
Björn Benouarets
2026-01-14 08:54:04 +01:00
parent a1eca7baef
commit 44ea07000b
18 changed files with 170 additions and 217 deletions

View File

@@ -14,12 +14,31 @@
"wrap": true,
"style": "heading",
"size": "ExtraLarge",
"text": "{card_title}"
"text": "{card_icon} {card_title}"
},
{
"type": "TextBlock",
"text": "{card_content}",
"wrap": true
},
{
"type": "FactSet",
"facts": [
{
"title": "Channel",
"value": "{card_channel_id}"
},
{
"title": "Teams",
"value": "{card_teams_id}"
}
]
},
{
"type": "TextBlock",
"text": "{card_debug}",
"wrap": true,
"fontType": "Monospace"
}
]
}

View File

@@ -0,0 +1,23 @@
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"body": [
{
"type": "TextBlock",
"text": "{card_icon} {card_title}",
"wrap": true,
"style": "heading",
"size": "ExtraLarge"
},
{
"type": "TextBlock",
"text": "{card_description}",
"wrap": true
},
{
"type": "FactSet",
"facts": []
}
]
}