Added Sign In with Apple test route

This commit is contained in:
George Powell
2026-02-13 01:06:21 -05:00
parent ac6ec051d4
commit 8ef2a41a69
3 changed files with 73 additions and 36 deletions

View File

@@ -0,0 +1,8 @@
import type { PageServerLoad } from './$types';
export const load: PageServerLoad = async ({ locals }) => {
return {
user: locals.user,
session: locals.session
};
};