routes.ts 501 B

123456789101112131415161718192021
  1. // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. import type { RouteRecordRaw } from 'vue-router'
  3. const routes: RouteRecordRaw[] = [
  4. {
  5. path: '/notifications',
  6. name: 'NotificationsList',
  7. component: () => import('./views/NotificationsList.vue'),
  8. meta: {
  9. title: __('Notifications'),
  10. requiresAuth: true,
  11. requiredPermission: null,
  12. hasHeader: true,
  13. hasBottomNavigation: true,
  14. level: 1,
  15. },
  16. },
  17. ]
  18. export default routes