7 lines
201 B
TypeScript
7 lines
201 B
TypeScript
import type { LayoutServerLoad } from './$types';
|
|
import { getSession } from '$lib/server/auth';
|
|
|
|
export const load: LayoutServerLoad = ({ cookies }) => {
|
|
return { loggedIn: getSession(cookies) };
|
|
};
|