mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
* feat(admin): Automatic Contributions update * feat(admin): Automatic Contributions fixed * feat(admin): Automatic Contributions remove unused code * feat(admin): Fix lint * feat(admin): Federation change error handling * feat(admin): fix lock * feat(admin): remove unused import * feat(admin): creation page updates * feat(admin): remove unused code * feat(admin): Code clenup, fixed navbar info badge
47 lines
1.0 KiB
JavaScript
47 lines
1.0 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: '/:catchAll(.*)',
|
|
name: 'NotFound',
|
|
component: () => import('@/components/NotFoundPage.vue'),
|
|
},
|
|
]
|
|
|
|
export default routes
|