Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { NextRequest, NextResponse } from 'next/server';
|
||||
|
||||
export async function GET(_request: NextRequest) {
|
||||
// MVP placeholder: always "not authenticated"
|
||||
// Later we will read a token (cookie/header) and return the real user.
|
||||
return NextResponse.json(
|
||||
{
|
||||
user: null,
|
||||
isAuthenticated: false,
|
||||
},
|
||||
{ status: 200 }
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user