diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2019-08-18 19:11:24 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2019-08-18 19:11:24 +0900 |
| commit | 9bc4af76b88c6c5f595840ef3b056feff58d3b64 (patch) | |
| tree | 31dc9061528229a584d08a6d2be24d2cdcfb88a5 /src | |
| parent | Fix bug (diff) | |
| download | sharkey-9bc4af76b88c6c5f595840ef3b056feff58d3b64.tar.gz sharkey-9bc4af76b88c6c5f595840ef3b056feff58d3b64.tar.bz2 sharkey-9bc4af76b88c6c5f595840ef3b056feff58d3b64.zip | |
モバイルでもRoomを表示できるように
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/mobile/script.ts | 1 |
1 files changed, 1 insertions, 0 deletions
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 } |