2022-12-04 20:56:33 +01:00
|
|
|
export default defineNuxtRouteMiddleware((to) => {
|
2022-12-17 17:55:29 +01:00
|
|
|
if (process.server)
|
|
|
|
return
|
2022-12-26 09:34:30 +01:00
|
|
|
if (to.path === '/signin/callback')
|
|
|
|
return
|
|
|
|
|
2023-01-03 10:53:31 +01:00
|
|
|
onMastoInit(() => {
|
|
|
|
if (!currentUser.value)
|
|
|
|
return navigateTo(`/${currentServer.value}/public`)
|
|
|
|
if (to.path === '/')
|
|
|
|
return navigateTo('/home')
|
|
|
|
})
|
2022-11-15 14:54:13 +01:00
|
|
|
})
|