File size: 186 Bytes
fcc02a2
 
 
 
 
 
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 });
}