1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-27 00:39:37 +02:00
AdventureLog/frontend/src/routes/+layout.server.ts

13 lines
210 B
TypeScript
Raw Normal View History

2024-07-08 11:44:39 -04:00
import type { LayoutServerLoad } from './$types';
export const load: LayoutServerLoad = async (event) => {
if (event.locals.user) {
return {
user: event.locals.user
};
}
return {
user: null
};
};