summaryrefslogtreecommitdiff
path: root/client/src/routes/(app)/+layout.ts
blob: 08366b011f9da88fd41f656c76aa1a863195e6f4 (plain)
1
2
3
4
5
6
import type { LayoutLoad } from './$types';

export const load: LayoutLoad = () => {
  // TODO: Decrypt sessioncookie if set, if not set, redirect to /login
  return {};
};