Spaces:
Paused
Paused
File size: 186 Bytes
1c72248 |
1 2 3 4 5 6 7 |
import { NextResponse } from 'next/server';
export async function GET() {
// if this gets hit, auth has already been verified
return NextResponse.json({ isAuthenticated: true });
}
|