diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-05-22 12:54:28 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-05-22 12:54:28 +0900 |
| commit | c1524d9beffe3daaa64c515a6a63ced5e34a3e9e (patch) | |
| tree | 17f74cc14a639b9c9c406dab8825b78dc6dece55 /src/client/app/mobile | |
| parent | Fetch joined groups on accept group invites (#4956) (diff) | |
| download | sharkey-c1524d9beffe3daaa64c515a6a63ced5e34a3e9e.tar.gz sharkey-c1524d9beffe3daaa64c515a6a63ced5e34a3e9e.tar.bz2 sharkey-c1524d9beffe3daaa64c515a6a63ced5e34a3e9e.zip | |
デッキでフォロー申請を見れるように
Diffstat (limited to 'src/client/app/mobile')
| -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 7a80f21759..106e843ca8 100644 --- a/src/client/app/mobile/script.ts +++ b/src/client/app/mobile/script.ts @@ -128,6 +128,7 @@ init((launch, os) => { { path: '/i/lists/:listId', component: DeckColumn, props: route => ({ component: () => import('../common/views/pages/user-list-editor.vue').then(m => m.default), listId: route.params.listId }) }, { path: '/i/groups', component: DeckColumn, props: route => ({ component: () => import('../common/views/pages/user-groups.vue').then(m => m.default) }) }, { path: '/i/groups/:groupId', component: DeckColumn, props: route => ({ component: () => import('../common/views/pages/user-group-editor.vue').then(m => m.default), groupId: route.params.groupId }) }, + { path: '/i/follow-requests', component: DeckColumn, props: route => ({ component: () => import('../common/views/pages/follow-requests.vue').then(m => m.default) }) }, ]}] : [ { path: '/', name: 'index', component: MkIndex }, |