Merge branch 'main' of https://github.com/Proxyy587/new-svrjs
This commit is contained in:
commit
9fc3b24140
1 changed files with 2 additions and 2 deletions
|
@ -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) });
|
||||
|
|
Loading…
Reference in a new issue