diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2018-03-27 12:57:52 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-03-27 12:57:52 +0900 |
| commit | d0c875c1e0d398cc0939b2ce9fc77aed03909f29 (patch) | |
| tree | 1c496aab092bea6ff6e14a649082c630fbaf521e /src/web/app/mobile/script.ts | |
| parent | Update docs (diff) | |
| parent | Replace /:user endpoints with /@:user (diff) | |
| download | sharkey-d0c875c1e0d398cc0939b2ce9fc77aed03909f29.tar.gz sharkey-d0c875c1e0d398cc0939b2ce9fc77aed03909f29.tar.bz2 sharkey-d0c875c1e0d398cc0939b2ce9fc77aed03909f29.zip | |
Merge pull request #1313 from akihikodaki/key
Replace /:user endpoints with /@:user
Diffstat (limited to 'src/web/app/mobile/script.ts')
| -rw-r--r-- | src/web/app/mobile/script.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/web/app/mobile/script.ts b/src/web/app/mobile/script.ts index 2b57b78ada..2fcb085aca 100644 --- a/src/web/app/mobile/script.ts +++ b/src/web/app/mobile/script.ts @@ -71,9 +71,9 @@ init((launch) => { { path: '/search', component: MkSearch }, { path: '/othello', component: MkOthello }, { path: '/othello/:game', component: MkOthello }, - { path: '/:user', component: MkUser }, - { path: '/:user/followers', component: MkFollowers }, - { path: '/:user/following', component: MkFollowing }, - { path: '/:user/:post', component: MkPost } + { path: '/@:user', component: MkUser }, + { path: '/@:user/followers', component: MkFollowers }, + { path: '/@:user/following', component: MkFollowing }, + { path: '/@:user/:post', component: MkPost } ]); }, true); |