summaryrefslogtreecommitdiff
path: root/src/client/app/mobile/script.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-05-30 04:45:27 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-05-30 04:45:27 +0900
commit9069a99a15ec7c5481079aeea728a3ad18eddd36 (patch)
tree5c70edee85d80bc3998fc3f877c947e9f7a6780e /src/client/app/mobile/script.ts
parent:art: (diff)
downloadmisskey-9069a99a15ec7c5481079aeea728a3ad18eddd36.tar.gz
misskey-9069a99a15ec7c5481079aeea728a3ad18eddd36.tar.bz2
misskey-9069a99a15ec7c5481079aeea728a3ad18eddd36.zip
wip
Diffstat (limited to 'src/client/app/mobile/script.ts')
-rw-r--r--src/client/app/mobile/script.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/client/app/mobile/script.ts b/src/client/app/mobile/script.ts
index 4c3d8fc3bd..607ff63711 100644
--- a/src/client/app/mobile/script.ts
+++ b/src/client/app/mobile/script.ts
@@ -37,6 +37,8 @@ import MkSearch from './views/pages/search.vue';
import MkFollowers from './views/pages/followers.vue';
import MkFollowing from './views/pages/following.vue';
import MkFavorites from './views/pages/favorites.vue';
+import MkUserLists from './views/pages/user-lists.vue';
+import MkUserList from './views/pages/user-list.vue';
import MkSettings from './views/pages/settings.vue';
import MkOthello from './views/pages/othello.vue';
@@ -74,6 +76,8 @@ init((launch) => {
{ path: '/i/settings', name: 'settings', component: MkSettings },
{ path: '/i/notifications', name: 'notifications', component: MkNotifications },
{ path: '/i/favorites', name: 'favorites', component: MkFavorites },
+ { path: '/i/lists', name: 'user-lists', component: MkUserLists },
+ { path: '/i/lists/:list', name: 'user-list', component: MkUserList },
{ path: '/i/widgets', name: 'widgets', component: MkWidgets },
{ path: '/i/messaging', name: 'messaging', component: MkMessaging },
{ path: '/i/messaging/:user', component: MkMessagingRoom },