From 96afe9253474a7d542f3e5a467276993b7dc43ce Mon Sep 17 00:00:00 2001
From: alex <alex@alexloehr.net>
Date: Thu, 23 Oct 2025 17:25:45 +0000
Subject: [PATCH] GS-2375
---
app.js | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/app.js b/app.js
index acfd58f..1109749 100644
--- a/app.js
+++ b/app.js
@@ -193,7 +193,10 @@
.get("/api/kurs/:refId/lp", async function (req, res) {
const {refId} = req.params
const {obj_id: objId} = await db.getObjIdFromRefId(refId)
- let data = await db.getKursLp(objId)
+
+ const raw = req.query.raw
+ let data = await db.getKursLp(objId, raw)
+
if (data) {
return res.send(data)
} else {
--
Gitblit v1.8.0