Files
tatort/src/routes/(angemeldet)/+layout.server.ts
Chi Cong Tran 1158c88d43
All checks were successful
InnoHub Processor/tatort/pipeline/head This commit looks good
fix SonarQube issues: mainly unused imports
2025-11-24 08:41:46 +01:00

11 lines
255 B
TypeScript

import { type ServerLoadEvent } from '@sveltejs/kit';
import type { PageServerLoad } from '../anmeldung/$types';
export const load: PageServerLoad = (event: ServerLoadEvent) => {
if (event.locals.user) {
return {
user: event.locals.user
};
}
};