From ec5e6c844394af00a60654644c66bf91c9f74d60 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 25 Oct 2020 16:11:08 +0900 Subject: APIコンソール MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/router.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'src/client/router.ts') diff --git a/src/client/router.ts b/src/client/router.ts index ef540f0d4b..56320d224e 100644 --- a/src/client/router.ts +++ b/src/client/router.ts @@ -70,6 +70,7 @@ export const router = createRouter({ { path: '/instance/abuses', component: page('instance/abuses') }, { path: '/notes/:note', name: 'note', component: page('note'), props: route => ({ noteId: route.params.note }) }, { path: '/tags/:tag', component: page('tag'), props: route => ({ tag: route.params.tag }) }, + { path: '/api-console', component: page('api-console') }, { path: '/auth/:token', component: page('auth') }, { path: '/miauth/:session', component: page('miauth') }, { path: '/authorize-follow', component: page('follow') }, -- cgit v1.2.3-freya