refactor: move post-login push logic to single place

This commit is contained in:
Daniel Roe 2022-12-26 08:33:14 +01:00
parent d9e8703882
commit 72855d7725
No known key found for this signature in database
GPG key ID: 22D5008E4F5D9B55
2 changed files with 9 additions and 10 deletions

View file

@ -88,7 +88,12 @@ async function loginTo(user?: Omit<UserLogin, 'account'> & { account?: AccountCr
}
}
if ('server' in route.params && user?.token && !useNuxtApp()._processingMiddleware) {
// This only cleans up the URL; page content should stay the same
if (route.path === '/signin/callback') {
await router.push('/home')
}
else if ('server' in route.params && user?.token && !useNuxtApp()._processingMiddleware) {
await router.push({
...route,
force: true,