style: add styling for pages and forms
This commit is contained in:
@@ -5,5 +5,8 @@ import { getSession, withApiAuthRequired } from '@auth0/nextjs-auth0';
|
||||
export const GET = withApiAuthRequired(async () => {
|
||||
const session = await getSession();
|
||||
|
||||
return NextResponse.json(session?.user);
|
||||
return NextResponse.json({
|
||||
success: true,
|
||||
data: { email: session?.user.email }
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user