immich/web/src/routes/+layout.server.ts

6 lines
156 B
TypeScript
Raw Normal View History

import type { LayoutServerLoad } from './$types';
export const load = (async ({ locals: { user } }) => {
return { user };
}) satisfies LayoutServerLoad;