From eb2dd03ef9092cd0bfebd4665b4097a1f8eb35b9 Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Mon, 18 May 2026 15:42:10 +0200 Subject: [PATCH] KI-AGENT: Matrix-Kommunikation im Frontend anbinden --- frontend/components/MainNav.vue | 5 + frontend/pages/communication/index.vue | 245 +++++++++++++++++++++++++ 2 files changed, 250 insertions(+) create mode 100644 frontend/pages/communication/index.vue diff --git a/frontend/components/MainNav.vue b/frontend/components/MainNav.vue index 655c6b5..660126f 100644 --- a/frontend/components/MainNav.vue +++ b/frontend/components/MainNav.vue @@ -75,6 +75,11 @@ const links = computed(() => { ] const communicationChildren = [ + { + label: "Matrix", + to: "/communication", + icon: "i-heroicons-chat-bubble-left-right" + }, featureEnabled("helpdesk") ? { label: "Helpdesk", to: "/helpdesk", diff --git a/frontend/pages/communication/index.vue b/frontend/pages/communication/index.vue new file mode 100644 index 0000000..8512bc6 --- /dev/null +++ b/frontend/pages/communication/index.vue @@ -0,0 +1,245 @@ + + +