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);