1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-09 07:46:48 +01:00
elk/middleware/auth.ts

9 lines
223 B
TypeScript
Raw Normal View History

export default defineNuxtRouteMiddleware((to) => {
if (process.server)
return
2022-11-22 23:08:36 +00:00
if (!currentUser.value)
return navigateTo(`/${currentServer.value}/public`)
if (to.path === '/')
return navigateTo('/home')
})