Fix vulnerability deletion API. #11

Merged
DorianNiemiecSVRJS merged 1 commit from main into main 2024-08-09 13:46:28 +02:00

View file

@ -6,8 +6,6 @@ export async function DELETE(
request: Request,
{ params }: { params: { id: string } }
) {
const client = await clientPromise;
const db = client.db();
const { id } = params;
if (!id) {
@ -15,6 +13,8 @@ export async function DELETE(
}
try {
const client = await clientPromise;
const db = client.db("downloadsDatabase");
const result = await db
.collection("vulnerabilities")
.deleteOne({ _id: new ObjectId(id) });