gradido/admin/src/router/routes.js
2025-02-15 12:43:14 +01:00

52 lines
1.1 KiB
JavaScript

const routes = [
{
path: '/authenticate',
},
{
path: '/',
component: () => import('@/pages/Overview.vue'),
},
{
path: '/statistic',
name: 'statistic',
component: () => import('@/pages/CommunityStatistic.vue'),
},
{
// TODO: Implement a "You are logged out"-Page
path: '/logout',
component: () => import('@/components/NotFoundPage.vue'),
},
{
path: '/user',
name: 'user',
component: () => import('@/pages/UserSearch.vue'),
},
{
path: '/creation-confirm',
name: 'creation-confirm',
component: () => import('@/pages/CreationConfirm.vue'),
},
{
path: '/contribution-links',
name: 'contribution-links',
component: () => import('@/pages/ContributionLinks.vue'),
},
{
path: '/federation',
name: 'federation',
component: () => import('@/pages/FederationVisualize.vue'),
},
{
path: '/projectBranding',
name: 'projectBranding',
component: () => import('@/pages/ProjectBranding.vue'),
},
{
path: '/:catchAll(.*)',
name: 'NotFound',
component: () => import('@/components/NotFoundPage.vue'),
},
]
export default routes