summaryrefslogtreecommitdiff
path: root/packages/frontend/src/router.ts
diff options
context:
space:
mode:
authorかっこかり <67428053+kakkokari-gtyih@users.noreply.github.com>2023-10-21 18:41:12 +0900
committerGitHub <noreply@github.com>2023-10-21 18:41:12 +0900
commitf51bca41c5f59f9ffce346a3ec32badaf1ccda31 (patch)
treeb5799527c2d3602da3592f7d6c1b65bb6ac8922c /packages/frontend/src/router.ts
parentすべてのフォロー中の人のwithRepliesを変える機能 (#12049) (diff)
downloadmisskey-f51bca41c5f59f9ffce346a3ec32badaf1ccda31.tar.gz
misskey-f51bca41c5f59f9ffce346a3ec32badaf1ccda31.tar.bz2
misskey-f51bca41c5f59f9ffce346a3ec32badaf1ccda31.zip
Feat: 外部サイトからテーマ・プラグインのインストールができるように (#12034)
* Feat: 外部サイトからテーマ・プラグインのインストールができるように * Update Changelog * Change Changelog * Remove unnecessary imports * Update fetch-external-resources.ts * Update CHANGELOG.md * Update CHANGELOG.md
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 2258edebbb..e73532f6b2 100644
--- a/packages/frontend/src/router.ts
+++ b/packages/frontend/src/router.ts
@@ -323,6 +323,10 @@ export const routes = [{
path: '/registry',
component: page(() => import('./pages/registry.vue')),
}, {
+ path: '/install-extentions',
+ component: page(() => import('./pages/install-extentions.vue')),
+ loginRequired: true,
+}, {
path: '/admin/user/:userId',
component: iAmModerator ? page(() => import('./pages/admin-user.vue')) : page(() => import('./pages/not-found.vue')),
}, {