1
0
mirror of https://github.com/elk-zone/elk synced 2025-01-22 07:12:49 +09:00
elk/middleware/auth.ts

14 lines
308 B
TypeScript
Raw Normal View History

export default defineNuxtRouteMiddleware((to) => {
if (process.server)
return
2022-12-26 17:34:30 +09:00
if (to.path === '/signin/callback')
return
2023-01-03 18:53:31 +09:00
onMastoInit(() => {
if (!currentUser.value)
return navigateTo(`/${currentServer.value}/public`)
if (to.path === '/')
return navigateTo('/home')
})
})