12 lines
220 B
TypeScript
12 lines
220 B
TypeScript
export default defineNuxtRouteMiddleware(async () => {
|
|
const auth = useAuthStore()
|
|
|
|
if (!auth.checked) {
|
|
await auth.ensureSession()
|
|
}
|
|
|
|
if (!auth.user?.hasLeaveRecapAccess) {
|
|
return navigateTo('/')
|
|
}
|
|
})
|