Files
pablotest/lib/auth-helpers.ts
T
2026-08-05 19:40:55 +03:00

11 lines
327 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { NextResponse } from 'next/server'
// NextAuth kaldırıldı — admin koruması şimdilik açık
export async function requireAdmin() {
// İleride env-based token veya başka auth mekanizması eklenebilir
}
export function unauthorized() {
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
}