routes.gen.js spreads `.toplevel` for every plugin uniformly, but only a few own full-screen routes, so Rollup warned on eleven of them every build. The `|| []` guard was always doing its job - the warning was noise, and noise in a build log is where a real warning goes to hide.
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
/**
|
|
* 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 = []
|