changes pilot socket to reperate pilto socket, added pilot stats

This commit is contained in:
PxlLoewe
2025-05-17 23:51:04 -07:00
parent 16e05a08a6
commit 6b58f564b2
16 changed files with 583 additions and 352 deletions

View File

@@ -44,3 +44,11 @@ export const deleteDispoHistory = async (id: number) => {
},
});
};
export const deletePilotHistory = async (id: number) => {
return await prisma.connectedAircraft.delete({
where: {
id: id,
},
});
};