From b3649132d0e3262e03d59863417a2548ecb33729 Mon Sep 17 00:00:00 2001 From: Miguel de la Cruz Date: Tue, 27 May 2025 13:35:02 +0200 Subject: [PATCH] Sets the Custom Profile Attributes feature flag to true by default (#31160) Co-authored-by: Miguel de la Cruz --- server/public/model/feature_flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/public/model/feature_flags.go b/server/public/model/feature_flags.go index e57ccbb34c..d66eda77ab 100644 --- a/server/public/model/feature_flags.go +++ b/server/public/model/feature_flags.go @@ -82,7 +82,7 @@ func (f *FeatureFlags) SetDefaults() { f.WebSocketEventScope = true f.NotificationMonitoring = true f.ExperimentalAuditSettingsSystemConsoleUI = false - f.CustomProfileAttributes = false + f.CustomProfileAttributes = true f.AttributeBasedAccessControl = false }