1
0
Fork 1
mirror of https://github.com/elk-zone/elk.git synced 2024-07-08 23:36:49 +01:00
elk/middleware/auth.ts

7 lines
176 B
TypeScript
Raw Normal View History

export default defineNuxtRouteMiddleware((from) => {
2022-11-22 23:08:36 +00:00
if (!currentUser.value)
return navigateTo('/public')
else if (from.path === '/')
return navigateTo('/home')
})