removed user/me api

This commit is contained in:
makearmy 2025-09-28 15:01:10 -04:00
parent da0de6b7e5
commit 50723718e4

View file

@ -1,7 +0,0 @@
import { NextRequest, NextResponse } from "next/server";
import { dFetchJSON } from "../../options/_lib";
export async function GET(req: NextRequest) {
const body = await dFetchJSON(req, "/users/me?fields=id,username,display_name,first_name,last_name,email");
return NextResponse.json(body, { headers: { "cache-control": "no-store" } });
}