Files
classquiz-ai/frontend/src/routes/+layout.server.ts
T
2023-06-30 13:16:12 +02:00

18 lines
355 B
TypeScript

// SPDX-FileCopyrightText: 2023 Marlon W (Mawoka)
//
// SPDX-License-Identifier: MPL-2.0
import { signedIn } from '$lib/stores';
import type { LayoutServerLoad } from './$types';
export const load: LayoutServerLoad = ({ locals }) => {
if (locals.email) {
signedIn.set(true);
} else {
signedIn.set(false);
}
return {
email: locals.email
};
};