Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent DAVERIO committed Sep 19, 2024
2 parents 213062a + 7c87a72 commit f270cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/common/actions/transformOrganisme.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function intoCsv(options = {}) {
"Région": (o) => o?.adresse?.region.nom,
"Qualiopi": (o) => (o.qualiopi ? "Oui" : "Non"),
"Réseaux": (o) => o.reseaux.map((r) => r.code).join("|"),
"Référentiels": (o) => sanitize(o.referentiels.join("|")),
"Référentiels": (o) => sanitize(o.referentiels.sort().join("|")),
"Nombre de relations": (o) => o.relations.length,
"Nombre de lieux de formation": (o) => o.lieux_de_formation.length,
"Date d'import": (o) => DateTime.fromJSDate(o._meta.date_import).toISODate(),
Expand Down

0 comments on commit f270cf8

Please sign in to comment.