8 lines
269 B
TypeScript
8 lines
269 B
TypeScript
import type { PageServerLoad } from './$types';
|
|
import { redirect } from '@sveltejs/kit';
|
|
|
|
export const load: PageServerLoad = async ({ cookies }) => {
|
|
if (cookies.get('admin_session') !== 'true') {
|
|
throw redirect(303, '/admin'); // zurück zur Login-Seite
|
|
}
|
|
}; |