summaryrefslogtreecommitdiff
path: root/packages/frontend/src/router.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-11-03 13:23:03 +0900
committerGitHub <noreply@github.com>2023-11-03 13:23:03 +0900
commit79346272f8792d35955efd3aaaa1e42e0cd2a6e3 (patch)
tree6f84fea79208862777db23aac434551494817595 /packages/frontend/src/router.ts
parentCWを使用する場合、注釈を空にすることを許可しない (diff)
downloadmisskey-79346272f8792d35955efd3aaaa1e42e0cd2a6e3.tar.gz
misskey-79346272f8792d35955efd3aaaa1e42e0cd2a6e3.tar.bz2
misskey-79346272f8792d35955efd3aaaa1e42e0cd2a6e3.zip
feat: レジストリAPIをサードパーティから利用可能に (#12229)
* wip * wip * Update remove.ts * refactor
Diffstat (limited to 'packages/frontend/src/router.ts')
-rw-r--r--packages/frontend/src/router.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/router.ts b/packages/frontend/src/router.ts
index ef0f5343bb..b81811d2e7 100644
--- a/packages/frontend/src/router.ts
+++ b/packages/frontend/src/router.ts
@@ -4,7 +4,7 @@
*/
import { AsyncComponentLoader, defineAsyncComponent, inject } from 'vue';
-import { Router } from '@/nirax';
+import { Router } from '@/nirax.js';
import { $i, iAmModerator } from '@/account.js';
import MkLoading from '@/pages/_loading_.vue';
import MkError from '@/pages/_error_.vue';
@@ -318,10 +318,10 @@ export const routes = [{
name: 'avatarDecorations',
component: page(() => import('./pages/avatar-decorations.vue')),
}, {
- path: '/registry/keys/system/:path(*)?',
+ path: '/registry/keys/:domain/:path(*)?',
component: page(() => import('./pages/registry.keys.vue')),
}, {
- path: '/registry/value/system/:path(*)?',
+ path: '/registry/value/:domain/:path(*)?',
component: page(() => import('./pages/registry.value.vue')),
}, {
path: '/registry',