svrjs-nextjs-website/app/api/uploadlogs/route.ts

22 lines
552 B
TypeScript
Raw Normal View History

2024-06-22 10:30:51 +02:00
import { NextResponse } from "next/server";
import clientPromise from "@/lib/db";
// Force the API to use SSR instead of static generation
export const dynamic = "force-dynamic";
2024-06-22 10:30:51 +02:00
export async function POST(request: Request) {
2024-07-17 17:45:28 +02:00
const body = await request.json();
const { version, date, bullets } = body;
2024-06-22 10:30:51 +02:00
2024-07-17 17:45:28 +02:00
const client = await clientPromise;
const db = client.db("downloadsDatabase");
2024-06-22 10:30:51 +02:00
2024-07-17 17:45:28 +02:00
const result = await db.collection("logs").insertOne({
version,
date,
bullets,
});
2024-06-22 10:30:51 +02:00
2024-07-17 17:45:28 +02:00
return NextResponse.json({ success: true, id: result.insertedId });
2024-06-22 10:30:51 +02:00
}