aboutsummaryrefslogtreecommitdiff
path: root/src/boot/routes.js
diff options
context:
space:
mode:
authorTusooa Zhu <tusooa@kazv.moe>2022-08-09 21:49:40 -0400
committerTusooa Zhu <tusooa@kazv.moe>2022-08-09 21:49:40 -0400
commit2afe1539d9a51d2d39adce5893a49656d48c4772 (patch)
tree89478ff9a7759d35f7108bccbff188d6daedbdd4 /src/boot/routes.js
parent750696643ffde27c1e8ae5a50253bbee5bfc4249 (diff)
Use $ for id UserProfile routes
Diffstat (limited to 'src/boot/routes.js')
-rw-r--r--src/boot/routes.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/boot/routes.js b/src/boot/routes.js
index 95e47199..91588af2 100644
--- a/src/boot/routes.js
+++ b/src/boot/routes.js
@@ -61,7 +61,7 @@ export default (store) => {
component: RemoteUserResolver,
beforeEnter: validateAuthenticatedRoute
},
- { name: 'external-user-profile', path: '/users/:id', component: UserProfile },
+ { name: 'external-user-profile', path: '/users/$:id', component: UserProfile },
{ name: 'interactions', path: '/users/:username/interactions', component: Interactions, beforeEnter: validateAuthenticatedRoute },
{ name: 'dms', path: '/users/:username/dms', component: DMs, beforeEnter: validateAuthenticatedRoute },
{ name: 'registration', path: '/registration', component: Registration },
@@ -75,7 +75,8 @@ export default (store) => {
{ name: 'search', path: '/search', component: Search, props: (route) => ({ query: route.query.query }) },
{ name: 'who-to-follow', path: '/who-to-follow', component: WhoToFollow, beforeEnter: validateAuthenticatedRoute },
{ name: 'about', path: '/about', component: About },
- { name: 'user-profile', path: '/:_(users)?/:name', component: UserProfile },
+ { name: 'user-profile', path: '/users/:name', component: UserProfile },
+ { name: 'legacy-user-profile', path: '/:name', component: UserProfile },
{ name: 'lists', path: '/lists', component: Lists },
{ name: 'lists-timeline', path: '/lists/:id', component: ListsTimeline },
{ name: 'lists-edit', path: '/lists/:id/edit', component: ListsEdit }