summaryrefslogtreecommitdiff
path: root/packages/frontend/src/router.ts
diff options
context:
space:
mode:
authorNamekuji <11836635+nmkj-io@users.noreply.github.com>2023-04-08 01:16:26 -0400
committerGitHub <noreply@github.com>2023-04-08 14:16:26 +0900
commit25ebb73756017174c3197376b7485e5e7fcb5fd1 (patch)
tree9f313b388dd38db54c66c66554b10255450832ba /packages/frontend/src/router.ts
parentenhance(backend): Redisにチャンネル投稿がない場合はDBから持... (diff)
downloadmisskey-25ebb73756017174c3197376b7485e5e7fcb5fd1.tar.gz
misskey-25ebb73756017174c3197376b7485e5e7fcb5fd1.tar.bz2
misskey-25ebb73756017174c3197376b7485e5e7fcb5fd1.zip
feat: account migration (#10507)
* add Move activity * add endpoint to move from local to remote * follow move activity coming to inbox * fix move endpoint * add known-as endpoint to create account alias * add migration page * add route to migration page * add move and known-as endpoints * fix dependnecies error * fix new endpoints * fix move activity id * fix refollow * add movedToUri and alsoKnownAs to api * fix moveToUri indicator * fix missing context * add chengelog * rename MkMoved to MkAccountMoved * add missing semicolon * fix targetUri * fix followings query * remove redundant null check
Diffstat (limited to 'packages/frontend/src/router.ts')
-rw-r--r--packages/frontend/src/router.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/frontend/src/router.ts b/packages/frontend/src/router.ts
index c8077edd28..0769ec2614 100644
--- a/packages/frontend/src/router.ts
+++ b/packages/frontend/src/router.ts
@@ -162,6 +162,10 @@ export const routes = [{
name: 'preferences-backups',
component: page(() => import('./pages/settings/preferences-backups.vue')),
}, {
+ path: '/migration',
+ name: 'migration',
+ component: page(() => import('./pages/settings/migration.vue'))
+ }, {
path: '/custom-css',
name: 'general',
component: page(() => import('./pages/settings/custom-css.vue')),