7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
|
|
export default defineNuxtRouteMiddleware((to, from) => {
|
||
|
|
const authStore = useAuthStore();
|
||
|
|
authStore.checkAuth();
|
||
|
|
if (!authStore.isInstructor) {
|
||
|
|
return navigateTo('/login');
|
||
|
|
}
|
||
|
|
});
|