/** * Notifications plugin routes */ export default [ { path: 'notifications', name: 'notifications', component: () => import('./views/NotificationsList.vue'), meta: { plugin: 'notifications' } }, { path: 'notifications/new', name: 'notification-new', component: () => import('./views/NotificationForm.vue'), meta: { requiresAuth: true, plugin: 'notifications' } }, { path: 'settings/notificationtypes', name: 'notification-types', component: () => import('./views/NotificationTypesList.vue'), meta: { requiresAuth: true, plugin: 'notifications' } }, { path: 'notifications/:id', name: 'notification-detail', component: () => import('./views/NotificationForm.vue'), meta: { plugin: 'notifications' } }, { path: 'notifications/:id/edit', name: 'notification-edit', component: () => import('./views/NotificationForm.vue'), meta: { requiresAuth: true, plugin: 'notifications' } }, { path: 'calendar', name: 'calendar', component: () => import('./views/CalendarView.vue'), meta: { plugin: 'notifications' } } ] // No full-screen routes: every view in this plugin renders inside // AppLayout. Declared so routes.gen.js can read `.toplevel` off the module // without Rollup warning about a missing export. export const toplevel = []