From 00d40dd3a1c5b3ba32c935c830739c84e5384f5b Mon Sep 17 00:00:00 2001 From: Agniva De Sarker Date: Thu, 25 Jul 2024 18:41:40 +0530 Subject: [PATCH] MM-59865: Set WebsocketEventScope FF to true (#27750) This has been set to true for a while on Community. Setting it to true now for it to soak in cloud. https://mattermost.atlassian.net/browse/MM-59865 ```release-note NONE ``` --- 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 b623bb83c1..ac39c8b2c9 100644 --- a/server/public/model/feature_flags.go +++ b/server/public/model/feature_flags.go @@ -78,7 +78,7 @@ func (f *FeatureFlags) SetDefaults() { f.CloudAnnualRenewals = false f.CloudDedicatedExportUI = false f.ChannelBookmarks = false - f.WebSocketEventScope = false + f.WebSocketEventScope = true f.NotificationMonitoring = true f.ExperimentalAuditSettingsSystemConsoleUI = false }