12345678910111213141516171819202122 |
- // Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
- /* eslint-disable zammad/zammad-detect-translatable-string */
- import type { RouteRecordRaw } from 'vue-router'
- const routes: RouteRecordRaw[] = [
- {
- path: '/playground',
- name: 'PlaygroundOverview',
- props: true,
- component: () => import('./views/PlaygroundOverview.vue'),
- meta: {
- title: 'Playground',
- requiresAuth: true,
- requiredPermission: ['*'],
- hasBottomNavigation: true,
- level: 2,
- },
- },
- ]
- export default routes
|