ramimu's picture
Upload 586 files
1c72248 verified
raw
history blame contribute delete
186 Bytes
import { NextResponse } from 'next/server';
export async function GET() {
// if this gets hit, auth has already been verified
return NextResponse.json({ isAuthenticated: true });
}