Aggiungere un campo "Vagliato dall'Editore" e aggiungere anche il campo "chi" e delle Note

This commit is contained in:
Surya Paolo
2025-05-02 19:11:35 +02:00
parent 192fd4706c
commit 6e8d1fcff1
4 changed files with 26 additions and 19 deletions

View File

@@ -808,9 +808,9 @@ router.post('/getexp', authenticate, (req, res) => {
});
router.post('/pickup', authenticate, (req, res) => {
router.post('/pickup', authenticate_noerror, (req, res) => {
const params = req.body;
let idapp = req.user.idapp;
let idapp = req.body.idapp;
let mytable = globalTables.getTableByTableName(params.table);
// console.log('mytable', mytable);
if (!mytable) {