From 571c24f2500ff28d40cc86f0f77f00c5a5fc7af4 Mon Sep 17 00:00:00 2001 From: florianfederspiel Date: Mon, 18 May 2026 18:01:54 +0200 Subject: [PATCH] KI-AGENT: Chat in eigene Kommunikationsseite auslagern --- frontend/components/MainNav.vue | 9 +- frontend/pages/communication/chat.vue | 570 +++++++++++++++++++++++++ frontend/pages/communication/index.vue | 332 +------------- 3 files changed, 588 insertions(+), 323 deletions(-) create mode 100644 frontend/pages/communication/chat.vue diff --git a/frontend/components/MainNav.vue b/frontend/components/MainNav.vue index 660126f..adeca39 100644 --- a/frontend/components/MainNav.vue +++ b/frontend/components/MainNav.vue @@ -76,10 +76,15 @@ const links = computed(() => { const communicationChildren = [ { - label: "Matrix", - to: "/communication", + label: "Chat", + to: "/communication/chat", icon: "i-heroicons-chat-bubble-left-right" }, + { + label: "Matrix-Setup", + to: "/communication", + icon: "i-heroicons-cog-6-tooth" + }, featureEnabled("helpdesk") ? { label: "Helpdesk", to: "/helpdesk", diff --git a/frontend/pages/communication/chat.vue b/frontend/pages/communication/chat.vue new file mode 100644 index 0000000..abfb14e --- /dev/null +++ b/frontend/pages/communication/chat.vue @@ -0,0 +1,570 @@ + + + diff --git a/frontend/pages/communication/index.vue b/frontend/pages/communication/index.vue index 1ac2306..115d90d 100644 --- a/frontend/pages/communication/index.vue +++ b/frontend/pages/communication/index.vue @@ -1,7 +1,6 @@