mirror of
https://github.com/emailerfacu-spec/minix-front.git
synced 2026-04-19 16:07:32 -03:00
10 lines
238 B
TypeScript
10 lines
238 B
TypeScript
import { sesionStore } from '@/stores/usuario';
|
|
import { redirect } from '@sveltejs/kit';
|
|
import { get } from 'svelte/store';
|
|
|
|
export async function load({ params }) {
|
|
if (get(sesionStore)?.isAdmin !== true) {
|
|
redirect(302, '/');
|
|
}
|
|
}
|