diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-08-14 01:19:05 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2018-08-14 01:19:05 +0900 |
| commit | 00119328f28d22c9d267de94ae53fa32f3d8b8c9 (patch) | |
| tree | b1949fd9ff1926c4cffd2e7391dbaa8a08527768 /src | |
| parent | wip (diff) | |
| download | misskey-00119328f28d22c9d267de94ae53fa32f3d8b8c9.tar.gz misskey-00119328f28d22c9d267de94ae53fa32f3d8b8c9.tar.bz2 misskey-00119328f28d22c9d267de94ae53fa32f3d8b8c9.zip | |
wip
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/app/desktop/script.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/app/desktop/script.ts b/src/client/app/desktop/script.ts index 8175ce9b66..8dc0482191 100644 --- a/src/client/app/desktop/script.ts +++ b/src/client/app/desktop/script.ts @@ -24,6 +24,7 @@ import updateBanner from './api/update-banner'; import MkIndex from './views/pages/index.vue'; import MkDeck from './views/pages/deck/deck.vue'; +import MkAdmin from './views/pages/admin/admin.vue'; import MkUser from './views/pages/user/user.vue'; import MkFavorites from './views/pages/favorites.vue'; import MkSelectDrive from './views/pages/selectdrive.vue'; @@ -55,6 +56,7 @@ init(async (launch) => { routes: [ { path: '/', name: 'index', component: MkIndex }, { path: '/deck', name: 'deck', component: MkDeck }, + { path: '/admin', name: 'admin', component: MkAdmin }, { path: '/i/customize-home', component: MkHomeCustomize }, { path: '/i/favorites', component: MkFavorites }, { path: '/i/messaging/:user', component: MkMessagingRoom }, |