diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-02-22 21:23:10 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-02-22 21:23:10 +0900 |
| commit | 1025077df21d63ba50fea7ec0058db5e698b4068 (patch) | |
| tree | 1941bad75979f480ad3d4a522fb65c115572dabd /src/web/app/mobile/script.ts | |
| parent | wip (diff) | |
| download | sharkey-1025077df21d63ba50fea7ec0058db5e698b4068.tar.gz sharkey-1025077df21d63ba50fea7ec0058db5e698b4068.tar.bz2 sharkey-1025077df21d63ba50fea7ec0058db5e698b4068.zip | |
wip
Diffstat (limited to 'src/web/app/mobile/script.ts')
| -rw-r--r-- | src/web/app/mobile/script.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/web/app/mobile/script.ts b/src/web/app/mobile/script.ts index 07912a178e..dce6640eac 100644 --- a/src/web/app/mobile/script.ts +++ b/src/web/app/mobile/script.ts @@ -22,6 +22,7 @@ import MkDrive from './views/pages/drive.vue'; import MkNotifications from './views/pages/notifications.vue'; import MkMessaging from './views/pages/messaging.vue'; import MkMessagingRoom from './views/pages/messaging-room.vue'; +import MkPost from './views/pages/post.vue'; /** * init @@ -57,6 +58,7 @@ init((launch) => { { path: '/i/drive/folder/:folder', component: MkDrive }, { path: '/i/drive/file/:file', component: MkDrive }, { path: '/selectdrive', component: MkSelectDrive }, - { path: '/:user', component: MkUser } + { path: '/:user', component: MkUser }, + { path: '/:user/:post', component: MkPost } ]); }, true); |