WIP: Refernzkurve wird angezeigt, aber kann nicht gesetzt werden

This commit is contained in:
Ismail Ali
2025-04-15 18:58:20 +02:00
parent 58577daf75
commit 9e8028ac16
3 changed files with 27 additions and 2 deletions

View File

@@ -0,0 +1,25 @@
// /api/cpl/tdrReferenceCurveAPIHandler.ts
import { NextApiRequest, NextApiResponse } from "next";
import path from "path";
import { promises as fs } from "fs";
export default async function handler(
req: NextApiRequest,
res: NextApiResponse
) {
const { slot } = req.query;
const filePath = path.join(
process.cwd(),
"apiMockData",
"tdr-reference-curves",
`slot${slot}.json`
);
try {
const fileContent = await fs.readFile(filePath, "utf-8");
res.status(200).json(JSON.parse(fileContent));
} catch (error) {
res.status(404).json({ error: "File not found" });
}
}