[MM-37278] Removing data retention feature flag (#17992)

* removing feature flag

Co-authored-by: Benjamin Cooke <benjamincooke@Benjamins-MacBook-Pro.local>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
Ben Cooke
2021-07-28 08:53:17 -04:00
коммит произвёл GitHub
родитель 5c22a8f083
Коммит 285de45988
4 изменённых файлов: 3 добавлений и 26 удалений

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

@@ -33,9 +33,6 @@ type FeatureFlags struct {
PluginApps string `plugin_id:"com.mattermost.apps"`
PluginFocalboard string `plugin_id:"focalboard"`
// Control support for custom data retention policies
CustomDataRetentionEnabled bool
// Enable timed dnd support for user status
TimedDND bool
@@ -50,11 +47,9 @@ func (f *FeatureFlags) SetDefaults() {
f.CollapsedThreads = true
f.EnableRemoteClusterService = false
f.AppsEnabled = false
f.PluginIncidentManagement = "1.14.3"
f.PluginApps = ""
f.PluginFocalboard = ""
f.CustomDataRetentionEnabled = false
f.TimedDND = false
f.GlobalHeader = false
}