summaryrefslogtreecommitdiff
path: root/src/web/app/mobile/script.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-02-22 17:57:14 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-02-22 17:57:14 +0900
commitf64a921575ac10545877d706577eeb978ec55a7d (patch)
tree4b483e912d2cbc44127f1b015c2e729a07fa8347 /src/web/app/mobile/script.ts
parentwip (diff)
downloadmisskey-f64a921575ac10545877d706577eeb978ec55a7d.tar.gz
misskey-f64a921575ac10545877d706577eeb978ec55a7d.tar.bz2
misskey-f64a921575ac10545877d706577eeb978ec55a7d.zip
wip
Diffstat (limited to 'src/web/app/mobile/script.ts')
-rw-r--r--src/web/app/mobile/script.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/web/app/mobile/script.ts b/src/web/app/mobile/script.ts
index a2f118b8f7..eef7c20f00 100644
--- a/src/web/app/mobile/script.ts
+++ b/src/web/app/mobile/script.ts
@@ -19,6 +19,7 @@ import MkSignup from './views/pages/signup.vue';
import MkUser from './views/pages/user.vue';
import MkSelectDrive from './views/pages/selectdrive.vue';
import MkDrive from './views/pages/drive.vue';
+import MkNotifications from './views/pages/notifications.vue';
/**
* init
@@ -47,6 +48,7 @@ init((launch) => {
app.$router.addRoutes([
{ path: '/', name: 'index', component: MkIndex },
{ path: '/signup', name: 'signup', component: MkSignup },
+ { path: '/i/notifications', component: MkNotifications },
{ path: '/i/drive', component: MkDrive },
{ path: '/i/drive/folder/:folder', component: MkDrive },
{ path: '/selectdrive', component: MkSelectDrive },