summaryrefslogtreecommitdiff
path: root/src/client/app/mobile
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-06-24 13:08:48 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-06-24 13:08:48 +0900
commitabc082f7c06bdefe2eae9d7493757e770897d151 (patch)
tree85004f3d25e2523ea96902814c9e97c5f207ace7 /src/client/app/mobile
parent4.10.0 (diff)
downloadsharkey-abc082f7c06bdefe2eae9d7493757e770897d151.tar.gz
sharkey-abc082f7c06bdefe2eae9d7493757e770897d151.tar.bz2
sharkey-abc082f7c06bdefe2eae9d7493757e770897d151.zip
リモートフォローフォームを実装するなど
Diffstat (limited to 'src/client/app/mobile')
-rw-r--r--src/client/app/mobile/script.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/client/app/mobile/script.ts b/src/client/app/mobile/script.ts
index cfa9654e61..cb43f9d520 100644
--- a/src/client/app/mobile/script.ts
+++ b/src/client/app/mobile/script.ts
@@ -38,6 +38,7 @@ import MkSettings from './views/pages/settings.vue';
import MkReversi from './views/pages/reversi.vue';
import MkTag from './views/pages/tag.vue';
import MkShare from './views/pages/share.vue';
+import MkFollow from '../common/views/pages/follow.vue';
/**
* init
@@ -80,7 +81,8 @@ init((launch) => {
{ path: '/@:user', component: MkUser },
{ path: '/@:user/followers', component: MkFollowers },
{ path: '/@:user/following', component: MkFollowing },
- { path: '/notes/:note', component: MkNote }
+ { path: '/notes/:note', component: MkNote },
+ { path: '/authorize-follow', component: MkFollow }
]
});