From 834dc4903806cfb13156538a1784c1d766f3df67 Mon Sep 17 00:00:00 2001 From: Akihiko Odaki Date: Tue, 27 Mar 2018 12:53:56 +0900 Subject: Replace /:user endpoints with /@:user --- src/web/app/mobile/script.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/web/app/mobile/script.ts') 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); -- cgit v1.2.3-freya