Made Aircrafts fetch from Server. Added OSM Objects to mission

This commit is contained in:
PxlLoewe
2025-05-07 22:31:49 -07:00
parent 99531e9abf
commit 1948d34963
23 changed files with 477 additions and 318 deletions

View File

@@ -0,0 +1,25 @@
import { NextResponse } from "next/server";
import { prisma } from "@repo/db";
export async function GET(): Promise<NextResponse> {
try {
const connectedAircraft = await prisma.connectedAircraft.findMany({
where: {
logoutTime: null,
},
include: {
Station: true,
},
});
return NextResponse.json(connectedAircraft, {
status: 200,
});
} catch (error) {
console.error(error);
return NextResponse.json(
{ error: "Failed to fetch Aircrafts" },
{ status: 500 },
);
}
}