Remove Custom statuses feature flag (#17075)

Этот коммит содержится в:
Jesús Espino
2021-03-05 09:21:58 +01:00
коммит произвёл GitHub
родитель 9cc5089af8
Коммит 633d82f0ac
5 изменённых файлов: 6 добавлений и 10 удалений

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

@@ -19,9 +19,6 @@ type FeatureFlags struct {
// Toggle on and off support for Collapsed Threads
CollapsedThreads bool
// Toggle on and off support for Custom User Statuses
CustomUserStatuses bool
// Feature flags to control plugin versions
PluginIncidentManagement string `plugin_id:"com.mattermost.plugin-incident-management"`
// Toggle on and off support for Files search
@@ -34,7 +31,6 @@ func (f *FeatureFlags) SetDefaults() {
f.CloudDelinquentEmailJobsEnabled = false
f.CollapsedThreads = false
f.FilesSearch = false
f.CustomUserStatuses = false
f.PluginIncidentManagement = "1.5.2"
}