From 8db6c62694f5a87cdcbfc1c1a81461249eba0db3 Mon Sep 17 00:00:00 2001 From: Julien DAUPHANT <1238254+jdauphant@users.noreply.github.com> Date: Fri, 6 Sep 2024 16:37:26 +0200 Subject: [PATCH] feat(config): add inverted value to hide profile and avatar changes values --- config.dev.json | 4 +++- config.preprod.json | 4 +++- config.prod.json | 4 +++- config.prod.lab.json | 4 +++- config.prod_rie.json | 6 ++++-- config.sample.json | 4 +++- 6 files changed, 19 insertions(+), 7 deletions(-) diff --git a/config.dev.json b/config.dev.json index a0d8b3a06e..e141082371 100644 --- a/config.dev.json +++ b/config.dev.json @@ -70,7 +70,9 @@ "layout": "bubble", "custom_themes": [], "FTUE.useCaseSelection": "WorkMessaging", - "RustCrypto.staged_rollout_percent": 100 + "RustCrypto.staged_rollout_percent": 100, + "hideDisplaynameChanges": true, + "hideAvatarChanges": true }, "branding": { "auth_header_logo_url": "themes/tchap/img/logos/tchap-logo-dev.svg", diff --git a/config.preprod.json b/config.preprod.json index 29c19453eb..cf6a148d49 100644 --- a/config.preprod.json +++ b/config.preprod.json @@ -64,7 +64,9 @@ "layout": "bubble", "custom_themes": [], "FTUE.useCaseSelection": "WorkMessaging", - "RustCrypto.staged_rollout_percent": 100 + "RustCrypto.staged_rollout_percent": 100, + "hideDisplaynameChanges": true, + "hideAvatarChanges": true }, "branding": { "auth_header_logo_url": "themes/tchap/img/logos/tchap-logo-preprod.svg", diff --git a/config.prod.json b/config.prod.json index 47219c1bc9..7dc23812d1 100644 --- a/config.prod.json +++ b/config.prod.json @@ -157,7 +157,9 @@ "layout": "bubble", "custom_themes": [], "FTUE.useCaseSelection": "WorkMessaging", - "RustCrypto.staged_rollout_percent": 0 + "RustCrypto.staged_rollout_percent": 100, + "hideDisplaynameChanges": true, + "hideAvatarChanges": true }, "branding": { "auth_header_logo_url": "themes/tchap/img/logos/tchap-logo.svg", diff --git a/config.prod.lab.json b/config.prod.lab.json index ff571e85ad..dd7b54adb4 100644 --- a/config.prod.lab.json +++ b/config.prod.lab.json @@ -157,7 +157,9 @@ "layout": "bubble", "custom_themes": [], "FTUE.useCaseSelection": "WorkMessaging", - "RustCrypto.staged_rollout_percent": 100 + "RustCrypto.staged_rollout_percent": 100, + "hideDisplaynameChanges": true, + "hideAvatarChanges": true }, "branding": { "auth_header_logo_url": "themes/tchap/img/logos/tchap-logo.svg", diff --git a/config.prod_rie.json b/config.prod_rie.json index 978a7ed224..9d96a23a96 100644 --- a/config.prod_rie.json +++ b/config.prod_rie.json @@ -91,7 +91,7 @@ "feature_video_rooms": false, "feature_notification_settings2": false, "feature_new_room_decoration_ui": true, - "feature_rust_crypto": false + "feature_rust_crypto": true }, "feedback": { "existing_issues_url": "https://github.com/tchapgouv/tchap-web-v4/issues?q=is%3Aopen+is%3Aissue+sort%3Areactions-%2B1-desc", @@ -157,7 +157,9 @@ "layout": "bubble", "custom_themes": [], "FTUE.useCaseSelection": "WorkMessaging", - "RustCrypto.staged_rollout_percent": 0 + "RustCrypto.staged_rollout_percent": 100, + "hideDisplaynameChanges": true, + "hideAvatarChanges": true }, "branding": { "auth_header_logo_url": "themes/tchap/img/logos/tchap-logo.svg", diff --git a/config.sample.json b/config.sample.json index 47c283dcf2..82bde05b8a 100644 --- a/config.sample.json +++ b/config.sample.json @@ -65,7 +65,9 @@ "MessageComposerInput.showPollsButton": true, "RoomList.orderAlphabetically": false, "Spaces.allRoomsInHome": true, - "custom_themes": [] + "custom_themes": [], + "hideDisplaynameChanges": true, + "hideAvatarChanges": true }, "branding": { "authHeaderLogoUrl": "themes/tchap/img/logos/tchap-logo.svg",