mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 15:54:39 +00:00
15 lines
No EOL
521 B
JavaScript
15 lines
No EOL
521 B
JavaScript
import { NextResponse } from "next/server";
|
|
import { authorize } from "@/app/api/utils";
|
|
import { ENDPOINTS } from "@/app/api/config";
|
|
|
|
export async function POST(request) {
|
|
const response = await authorize(ENDPOINTS.auth, await request.json());
|
|
if (!response) {
|
|
return NextResponse.json({ message: "Server Error" }, { status: 500 });
|
|
}
|
|
if (!response.profile) {
|
|
return NextResponse.json({ message: "Profile not found" }, { status: 404 });
|
|
}
|
|
|
|
return NextResponse.json(response);
|
|
} |