Matrix-Chatfenster (read-only) im Dashboard integrieren

This commit is contained in:
Kai
2026-02-17 15:42:58 +01:00
parent 53d4052446
commit 234bd7e182
9 changed files with 207 additions and 2 deletions

View File

@@ -149,6 +149,10 @@ type DashboardPage struct {
TodayGroups []FieldTaskGroup
Calendar []CalendarMonth
PlanningCount int
MatrixEnabled bool
MatrixRoomID string
MatrixError string
MatrixMessages []MatrixMessage
}
type FieldsPage struct {
@@ -181,3 +185,9 @@ type GeneralPage struct {
Settings Settings
Months []MonthOption
}
type MatrixMessage struct {
Sender string
Body string
Timestamp string
}