1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-02-05 21:39:51 +00:00
bramw_baserow/premium/web-frontend/modules/baserow_premium/routes.js
2024-12-12 19:41:04 +00:00

29 lines
775 B
JavaScript

import path from 'path'
export const routes = [
{
name: 'admin-licenses',
path: '/admin/licenses',
component: path.resolve(__dirname, 'pages/admin/licenses.vue'),
},
{
name: 'admin-license',
path: '/admin/license/:id',
component: path.resolve(__dirname, 'pages/admin/license.vue'),
},
{
name: 'database-public-kanban-view',
path: '/public/kanban/:slug',
component: '@baserow/modules/database/pages/publicView.vue',
},
{
name: 'database-public-calendar-view',
path: '/public/calendar/:slug',
component: '@baserow/modules/database/pages/publicView.vue',
},
{
name: 'database-public-timeline-view',
path: '/public/timeline/:slug',
component: '@baserow/modules/database/pages/publicView.vue',
},
]