diff --git a/packages/client/src/pages/my-groups/group.vue b/packages/client/src/pages/my-groups/group.vue new file mode 100644 index 000000000..92c0483af --- /dev/null +++ b/packages/client/src/pages/my-groups/group.vue @@ -0,0 +1,178 @@ + + + + + diff --git a/packages/client/src/pages/my-groups/index.vue b/packages/client/src/pages/my-groups/index.vue new file mode 100644 index 000000000..4b2b2963a --- /dev/null +++ b/packages/client/src/pages/my-groups/index.vue @@ -0,0 +1,147 @@ + + + + + diff --git a/packages/client/src/router.ts b/packages/client/src/router.ts index 7ce338bd0..58a3187f9 100644 --- a/packages/client/src/router.ts +++ b/packages/client/src/router.ts @@ -192,6 +192,14 @@ export const routes = [{ path: '/my/messaging/group/:groupId', component: page(() => import('./pages/messaging/messaging-room.vue')), loginRequired: true, +}, { + path: '/my/groups/', + component: page(() => import('./pages/my-groups/index.vue')), + loginRequired: true, +}, { + path: '/my/groups/:groupId', + component: page(() => import('./pages/my-groups/group.vue')), + loginRequired: true, }, { path: '/my/drive/folder/:folder', component: page(() => import('./pages/drive.vue')),