19 lines
392 B
TypeScript
19 lines
392 B
TypeScript
import { NextResponse } from 'next/server';
|
|
import { getSession } from '@/lib/auth';
|
|
|
|
export async function GET() {
|
|
const session = await getSession();
|
|
|
|
if (!session) {
|
|
return NextResponse.json({ authenticated: false }, { status: 401 });
|
|
}
|
|
|
|
return NextResponse.json({
|
|
authenticated: true,
|
|
user: {
|
|
id: session.userId,
|
|
username: session.username,
|
|
},
|
|
});
|
|
}
|