Files
archtika/web-app/src/routes/+layout.server.ts

8 lines
154 B
TypeScript
Raw Normal View History

import type { LayoutServerLoad } from "./$types";
export const load: LayoutServerLoad = async ({ locals }) => {
2024-07-31 07:23:32 +02:00
return {
user: locals.user
};
};