⬆️ Finished upgrading SvelteKit

This commit is contained in:
Mawoka
2022-08-18 16:22:44 +02:00
parent a3b015ffca
commit cacd727c0e
21 changed files with 60 additions and 268 deletions
+7 -3
View File
@@ -1,10 +1,14 @@
// import { redirect } from '@sveltejs/kit';
import { signedIn } from '$lib/stores';
import type { LayoutLoad } from './$types';
export async function load({ session }) {
if (session.authenticated) {
export const load: LayoutLoad = async ({ data }) => {
const { email } = data;
if (email) {
signedIn.set(true);
// throw redirect(302, '/dashboard');
} else {
signedIn.set(false);
}
return {};
}
};