mirror of
https://github.com/arthur-pbty/links.git
synced 2026-08-01 20:29:27 +02:00
7 lines
211 B
JavaScript
7 lines
211 B
JavaScript
import { NextResponse } from 'next/server';
|
|
import { isAdminRequest } from '../../../../lib/auth';
|
|
|
|
export async function GET(request) {
|
|
return NextResponse.json({ authenticated: isAdminRequest(request) });
|
|
}
|