mirror of
https://github.com/BradNut/AdelieStack
synced 2025-09-08 17:40:20 +00:00
6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
|
|
export const load = async ({ locals }) => {
|
||
|
|
const authedUser = await locals.getAuthedUser();
|
||
|
|
return {
|
||
|
|
authedUser
|
||
|
|
}
|
||
|
|
}
|