Update /Statystyki.mvc/GetPunkty endpoint

This commit is contained in:
Mikołaj Pich 2020-09-27 22:18:09 +02:00
parent f5a7f6e506
commit 1b62d3e77d

View file

@ -717,7 +717,10 @@ router.all("/Statystyki.mvc/GetOcenyRoczne", (req, res) => {
router.all("/Statystyki.mvc/GetPunkty", (req, res) => {
res.json({
"data": require("../../data/opiekun/oceny-statystyki-punkty"),
"data": {
"TableContent": "<table><thead><tr><th>Przedmiot</th><th>Uczeń</th><th>Średnia klasy</th></tr></thead><tbody></tbody></table>",
"Items": require("../../data/opiekun/oceny-statystyki-punkty")
},
"success": true
});
});