- primo aggiornamento myreccard

- aggiunta sito germogliamo.app
- aggiornato login con il parametro "browser_random" che serve per fare un login anche su 2 pagine contemporaneamente.
This commit is contained in:
Surya Paolo
2025-11-25 17:45:24 +01:00
parent c61572a715
commit 70698fab44
15 changed files with 134 additions and 50 deletions

View File

@@ -45,7 +45,8 @@ function setupRouters(app) {
const router = require(`../router/${file}`);
app.use(path, router);
} catch (err) {
console.error(`❌ Errore caricamento router ${file}: ${err.message}`);
console.error(`❌ Errore caricamento router ${file}:`, err.stack ? err.stack : err.message);
return false;
}
});
@@ -56,6 +57,8 @@ function setupRouters(app) {
service: 'invita-amico-api',
});
});
return true;
}
function setupMailchimpRoutes(app) {