routes.ts 550 B

12345678910111213141516171819202122
  1. // Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
  2. /* eslint-disable zammad/zammad-detect-translatable-string */
  3. import type { RouteRecordRaw } from 'vue-router'
  4. const routes: RouteRecordRaw[] = [
  5. {
  6. path: '/playground',
  7. name: 'PlaygroundOverview',
  8. props: true,
  9. component: () => import('./views/PlaygroundOverview.vue'),
  10. meta: {
  11. title: 'Playground',
  12. requiresAuth: true,
  13. requiredPermission: ['*'],
  14. hasBottomNavigation: true,
  15. level: 2,
  16. },
  17. },
  18. ]
  19. export default routes