mirror of
https://github.com/BradNut/AdelieStack
synced 2025-09-08 17:40:20 +00:00
9 lines
No EOL
202 B
TypeScript
9 lines
No EOL
202 B
TypeScript
import { loadFlash } from "sveltekit-flash-message/server";
|
|
|
|
export const load = loadFlash(async ({ locals }) => {
|
|
const authedUser = await locals.getAuthedUser();
|
|
|
|
return {
|
|
authedUser,
|
|
};
|
|
}); |