AdelieStack/src/routes/+layout.server.ts

6 lines
126 B
TypeScript
Raw Normal View History

2024-12-31 22:43:09 +00:00
export const load = async ({ locals }) => {
const authedUser = await locals.getAuthedUser();
return {
authedUser
}
}