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 @@