2019-02-22 14:55:47 +01:00
|
|
|
import Profile from '@/views/Account/Profile.vue';
|
|
|
|
import CreateGroup from '@/views/Group/Create.vue';
|
|
|
|
import Group from '@/views/Group/Group.vue';
|
|
|
|
import GroupList from '@/views/Group/GroupList.vue';
|
|
|
|
import Identities from '@/views/Account/Identities.vue';
|
2019-04-01 11:49:54 +02:00
|
|
|
import { RouteConfig } from 'vue-router';
|
2019-02-22 14:55:47 +01:00
|
|
|
|
|
|
|
export enum ActorRouteName {
|
|
|
|
IDENTITIES = 'Identities',
|
|
|
|
GROUP_LIST = 'GroupList',
|
|
|
|
GROUP = 'Group',
|
|
|
|
CREATE_GROUP = 'CreateGroup',
|
|
|
|
PROFILE = 'Profile',
|
|
|
|
}
|
|
|
|
|
2019-04-01 11:49:54 +02:00
|
|
|
export const actorRoutes: RouteConfig[] = [
|
2019-02-22 14:55:47 +01:00
|
|
|
{
|
|
|
|
path: '/identities',
|
|
|
|
name: ActorRouteName.IDENTITIES,
|
|
|
|
component: Identities,
|
|
|
|
meta: { requiredAuth: true },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/groups',
|
|
|
|
name: ActorRouteName.GROUP_LIST,
|
|
|
|
component: GroupList,
|
|
|
|
meta: { requiredAuth: false },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/groups/create',
|
|
|
|
name: ActorRouteName.CREATE_GROUP,
|
|
|
|
component: CreateGroup,
|
|
|
|
meta: { requiredAuth: true },
|
|
|
|
},
|
|
|
|
{
|
2019-04-03 17:29:03 +02:00
|
|
|
path: '/~:preferredUsername',
|
2019-02-22 14:55:47 +01:00
|
|
|
name: ActorRouteName.GROUP,
|
|
|
|
component: Group,
|
|
|
|
props: true,
|
|
|
|
meta: { requiredAuth: false },
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: '/@:name',
|
|
|
|
name: ActorRouteName.PROFILE,
|
|
|
|
component: Profile,
|
|
|
|
props: true,
|
|
|
|
meta: { requiredAuth: false },
|
|
|
|
},
|
|
|
|
];
|