From 4ebdf324959976148ff91c11776da27479b8aae8 Mon Sep 17 00:00:00 2001 From: Marco Pedone Date: Tue, 26 May 2026 16:35:27 +0200 Subject: [PATCH] remove: + Annuncio --- .../src/server/controllers/servizio.controller.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/infoalloggi/src/server/controllers/servizio.controller.ts b/apps/infoalloggi/src/server/controllers/servizio.controller.ts index 934629f..d569d62 100644 --- a/apps/infoalloggi/src/server/controllers/servizio.controller.ts +++ b/apps/infoalloggi/src/server/controllers/servizio.controller.ts @@ -720,9 +720,9 @@ export const getAnnunciAvailableToAdd = async ( let qry = tx .$pickTables<"annunci">() .selectFrom("annunci") - .select(["id", "codice", "titolo_it"]) - .where("annunci.web", "=", true) - .where("stato", "!=", "Sospeso"); + .select(["id", "codice", "titolo_it"]); + //.where("annunci.web", "=", true) + //.where("stato", "!=", "Sospeso"); if (ids.length > 0) { qry = qry.where("id", "not in", ids);