diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php index a169ae4..86dd655 100644 --- a/lib/Controller/PageController.php +++ b/lib/Controller/PageController.php @@ -26,5 +26,4 @@ public function index(string $path): TemplateResponse { return $response; } - } diff --git a/src/components/LeftSidebar.vue b/src/components/LeftSidebar.vue index 4a846f4..754516e 100644 --- a/src/components/LeftSidebar.vue +++ b/src/components/LeftSidebar.vue @@ -5,19 +5,34 @@ :title="t('my_company', 'Home')" icon="icon-home" :exact="true" /> + + + diff --git a/src/store/index.js b/src/store/index.js index 84a1269..5a63407 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1,3 +1,5 @@ +// eslint-disable-next-line n/no-missing-import, import/no-unresolved +import announcementsStore from 'apps/announcementcenter/src/store/announcementsStore.js' import Vue from 'vue' import Vuex, { Store } from 'vuex' @@ -5,4 +7,4 @@ import storeConfig from './storeConfig.js' Vue.use(Vuex) -export default new Store(storeConfig) +export default new Store({ ...storeConfig, ...announcementsStore }) diff --git a/src/views/Notifications.vue b/src/views/Notifications.vue new file mode 100644 index 0000000..a82cb80 --- /dev/null +++ b/src/views/Notifications.vue @@ -0,0 +1,99 @@ + + +