Co-authored-by: Benjamin Cooke <benjamincooke@Benjamins-MacBook-Pro.local>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
Ben Cooke
2021-04-07 12:12:53 -04:00
коммит произвёл GitHub
родитель f5d599b728
Коммит 1c3712b344

Просмотреть файл

@@ -36,6 +36,9 @@ type FeatureFlags struct {
FilesSearch bool
// Feature flag to control setting the TCP_NO_DELAY setting for websockets.
WebSocketDelay bool
// Control support for custom data retention policies
CustomDataRetentionEnabled bool
}
func (f *FeatureFlags) SetDefaults() {
@@ -50,6 +53,7 @@ func (f *FeatureFlags) SetDefaults() {
f.PluginIncidentManagement = "1.7.0"
f.PluginApps = ""
f.WebSocketDelay = false
f.CustomDataRetentionEnabled = false
}
func (f *FeatureFlags) Plugins() map[string]string {