123456789101112131415161718192021 |
- // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- import type { RouteRecordRaw } from 'vue-router'
- const routes: RouteRecordRaw[] = [
- {
- path: '/notifications',
- name: 'NotificationsList',
- component: () => import('./views/NotificationsList.vue'),
- meta: {
- title: __('Notifications'),
- requiresAuth: true,
- requiredPermission: null,
- hasHeader: true,
- hasBottomNavigation: true,
- level: 1,
- },
- },
- ]
- export default routes
|