From 126e9332ad526a1902f7bb42e7faf1a4bc59b24d Mon Sep 17 00:00:00 2001 From: julien vdb Date: Sun, 26 Jul 2026 19:15:08 +0200 Subject: [PATCH] 0.13.15 : default profileVisibility to public MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `configuration.privacy.profileVisibility` n'avait pas de valeur par défaut : un composant `privacy` créé sans choix explicite laissait le champ nul, que la recherche d'utilisateurs traitait comme non-public. L'écran de confidentialité du front affiche « public » dans ce cas — le schéma s'aligne. Ne rétroagit pas sur les utilisateurs existants, qui n'ont aucun composant `privacy` : c'est le front (0.18.3) qui les traite comme publics. Co-Authored-By: Claude Opus 5 --- package.json | 2 +- src/components/configuration/privacy.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 3e28a29..67bb8a9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "harmony-back", - "version": "0.13.14", + "version": "0.13.15", "private": true, "description": "A Strapi application", "scripts": { diff --git a/src/components/configuration/privacy.json b/src/components/configuration/privacy.json index 6189b93..1260475 100644 --- a/src/components/configuration/privacy.json +++ b/src/components/configuration/privacy.json @@ -13,7 +13,8 @@ "public", "contacts", "private" - ] + ], + "default": "public" }, "allowMessage": { "type": "boolean",