Files
web/app/[lang]/(live)/(protected)/bypass/page.tsx
Michael Zetterberg 888c33e3b3 chore(debug): auth
2024-05-28 08:28:54 +02:00

8 lines
161 B
TypeScript

import { auth } from "@/auth"
export default async function ByPass() {
const session = await auth()
return <pre>{JSON.stringify(session, null, 2)}</pre>
}