mirror of
https://github.com/BradNut/TofuStack
synced 2025-09-08 17:40:26 +00:00
5 lines
115 B
TypeScript
5 lines
115 B
TypeScript
|
|
export const load = async ({ locals }) => {
|
||
|
|
const user = await locals.getAuthedUser();
|
||
|
|
return { user: user };
|
||
|
|
};
|