Feature Flag for health of server dashboard (#19454)

* tools updates

* Revert "tools updates"

This reverts commit 6293297b55.

* new feature flag for health of server dashboard

* fixing comment

* changing ff name

Co-authored-by: Benjamin Cooke <benjamincooke@Benjamins-MacBook-Pro.local>
Co-authored-by: Benjamin Cooke <benjamincooke@Benjamins-MBP.ht.home>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
This commit is contained in:
Ben Cooke
2022-02-03 13:28:22 -05:00
committed by GitHub
parent 79d63193ac
commit 09e13360c2

View File

@@ -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 {