From 9bc4af76b88c6c5f595840ef3b056feff58d3b64 Mon Sep 17 00:00:00 2001 From: syuilo Date: Sun, 18 Aug 2019 19:11:24 +0900 Subject: モバイルでもRoomを表示できるように MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/app/mobile/script.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'src/client') diff --git a/src/client/app/mobile/script.ts b/src/client/app/mobile/script.ts index 1e0441987f..4500ad8c91 100644 --- a/src/client/app/mobile/script.ts +++ b/src/client/app/mobile/script.ts @@ -171,6 +171,7 @@ init((launch, os) => { ]}, { path: '/@:user/pages/:page', component: UI, props: route => ({ component: () => import('../common/views/pages/page.vue').then(m => m.default), pageName: route.params.page, username: route.params.user }) }, { path: '/@:user/pages/:pageName/view-source', component: UI, props: route => ({ component: () => import('../common/views/pages/page-editor/page-editor.vue').then(m => m.default), initUser: route.params.user, initPageName: route.params.pageName }) }, + { path: '/@:acct/room', props: true, component: () => import('../common/views/pages/room/room.vue').then(m => m.default) }, { path: '/notes/:note', component: MkNote }, { path: '/authorize-follow', component: MkFollow }, { path: '*', component: MkNotFound } -- cgit v1.2.3-freya