From 09e13360c2e24efee26d5dc989a1d7d7ada1f014 Mon Sep 17 00:00:00 2001 From: Ben Cooke Date: Thu, 3 Feb 2022 13:28:22 -0500 Subject: [PATCH] Feature Flag for health of server dashboard (#19454) * tools updates * Revert "tools updates" This reverts commit 6293297b55803c5a263e200ebd80192899666ae9. * new feature flag for health of server dashboard * fixing comment * changing ff name Co-authored-by: Benjamin Cooke Co-authored-by: Benjamin Cooke Co-authored-by: Mattermod --- model/feature_flags.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/model/feature_flags.go b/model/feature_flags.go index 5c6c0655ba..1a4251675a 100644 --- a/model/feature_flags.go +++ b/model/feature_flags.go @@ -69,6 +69,9 @@ type FeatureFlags struct { BoardsDataRetention bool NormalizeLdapDNs bool + + // Enable Workspace optimization dashboard + WorkspaceOptimizationDashboard bool } func (f *FeatureFlags) SetDefaults() { @@ -93,6 +96,7 @@ func (f *FeatureFlags) SetDefaults() { f.InlinePostEditing = false f.BoardsDataRetention = false f.NormalizeLdapDNs = false + f.WorkspaceOptimizationDashboard = false } func (f *FeatureFlags) Plugins() map[string]string {