elearning/frontend_management/middleware/instructor.ts

7 lines
191 B
TypeScript
Raw Permalink Normal View History

2026-01-12 16:49:58 +07:00
export default defineNuxtRouteMiddleware((to, from) => {
const authStore = useAuthStore();
authStore.checkAuth();
if (!authStore.isInstructor) {
return navigateTo('/login');
}
});