123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- // Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- import { ticketInformationRoutes } from './views/TicketInformation/plugins/index.ts'
- import type { RouteRecordRaw } from 'vue-router'
- const routes: RouteRecordRaw[] = [
- {
- path: '/tickets/:internalId(\\d+)',
- name: 'TicketDetailView',
- props: true,
- component: () => import('./views/TicketDetailView.vue'),
- alias: ['/ticket/:internalId(\\d+)', '/ticket/zoom/:internalId(\\d+)'],
- children: [
- {
- path: '',
- name: 'TicketDetailArticlesView',
- component: () => import('./views/TicketDetailArticlesView.vue'),
- props: true,
- meta: {
- title: __('Ticket'),
- requiresAuth: true,
- requiredPermission: ['ticket.agent', 'ticket.customer'],
- level: 3,
- },
- },
- {
- path: 'information',
- component: () =>
- import('./views/TicketInformation/TicketInformationView.vue'),
- name: 'TicketInformationView',
- props: true,
- children: ticketInformationRoutes,
- meta: {
- title: __('Ticket information'),
- requiresAuth: true,
- requiredPermission: ['ticket.agent', 'ticket.customer'],
- hasHeader: false,
- level: 4,
- },
- },
- ],
- },
- {
- path: '/tickets/view/:overviewLink?',
- name: 'TicketOverview',
- props: true,
- component: () => import('./views/TicketOverview.vue'),
- alias: '/ticket/view/:overviewLink?',
- meta: {
- title: __('Tickets'),
- requiresAuth: true,
- requiredPermission: ['ticket.agent', 'ticket.customer'],
- hasBottomNavigation: true,
- level: 2,
- },
- },
- {
- path: '/tickets/create',
- name: 'TicketCreate',
- props: false,
- component: () => import('./views/TicketCreate.vue'),
- alias: ['/ticket/create', '/ticket/create/:pathMatch(.*)*'],
- meta: {
- title: __('Create Ticket'),
- requiresAuth: true,
- requiredPermission: ['ticket.agent', 'ticket.customer'],
- level: 2,
- },
- },
- {
- path: '/ticket/zoom/:internalId(\\d+)/:articleId(\\d+)',
- redirect: (to) =>
- `/tickets/${to.params.internalId}#article-${to.params.articleId}`,
- },
- ]
- export default routes
|