summaryrefslogtreecommitdiffstats
path: root/src/router.js
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2018-12-19 09:50:59 +0100
committerJulius Härtl <jus@bitgrid.net>2018-12-20 11:07:49 +0100
commitc9fe80865b35c835c25f42e7daa34d917461a7ec (patch)
treed5a9413773cfa4252065105271a63efc6d349e9a /src/router.js
parent4253672fc10cf2c35bd5dba6928bc03a085b294a (diff)
Fix frontend for public profiles
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src/router.js')
-rw-r--r--src/router.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/router.js b/src/router.js
index 88ed9b95..35b360a2 100644
--- a/src/router.js
+++ b/src/router.js
@@ -52,8 +52,7 @@ export default new Router({
name: 'timeline'
},
{
- path: '/:index(index.php/)?apps/social/account/@:account',
- alias: './timeline',
+ path: '/:index(index.php/)?apps/social/@:account',
components: {
default: Profile,
details: ProfileTimeline
@@ -83,12 +82,6 @@ export default new Router({
}
}
]
- },
- {
- path: '/:index(index.php/)?apps/social/@:account',
- component: Profile,
- props: true,
- name: 'public'
}
]
})