mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 12:36:57 +00:00
table hover fix
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import clientPromise from "@/lib/mongodb";
|
||||
import { dateOrderingFrance } from "@/utils/dbDateOrdering";
|
||||
|
||||
/**
|
||||
* Tournament data API endpoint
|
||||
* @route /api/v1/tournaments/france
|
||||
* @public
|
||||
*/
|
||||
export const revalidate = 3600; // revalidate cache every 6 hours
|
||||
export async function GET() {
|
||||
const headers = {
|
||||
"Content-Type": "application/json",
|
||||
};
|
||||
try {
|
||||
const client = await clientPromise;
|
||||
const db = client.db("tournamentsFranceDB");
|
||||
|
||||
const data = await dateOrderingFrance(db);
|
||||
|
||||
return new Response(JSON.stringify(data), { status: 200, headers });
|
||||
} catch (error) {
|
||||
return new Response(JSON.stringify(error), { status: 500, headers });
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user