diff --git a/app/api/geoip-status/route.ts b/app/api/geoip-status/route.ts index 6ffa512a..15aa3ef7 100644 --- a/app/api/geoip-status/route.ts +++ b/app/api/geoip-status/route.ts @@ -1,12 +1,10 @@ import { existsSync } from "node:fs"; import { NextResponse } from "next/server"; -import { requireUser } from "@/src/lib/auth"; const COUNTRY_DB = "/usr/share/GeoIP/GeoLite2-Country.mmdb"; const ASN_DB = "/usr/share/GeoIP/GeoLite2-ASN.mmdb"; export async function GET() { - await requireUser(); return NextResponse.json({ country: existsSync(COUNTRY_DB), asn: existsSync(ASN_DB),