* Create the system console setting and send to webapp * MI-1145: Add custom status APIs * MI-1145 Add slash commands to set and clear status * Add validation for custom status API * Trim custom status message * Code refactoring - Run gofmt - Rename constants * Remove sendUserUpdated webhook event * Fix recent custom status length * Update error conditions * Disable /status slash command when config setting is off * MI-1155: Create the feature flag for custom status APIs and slash commands * Move recent custom statuses to user preferences (#7) * Move recent custom statuses to user preferences * Code refactoring and feedback changes * Update slash command text and emoji regex * Make the custom status feature flag off by default * Update SetCustomStatus, handle recents not set better * Update status codes * Update slash command handling * Add telementry settings * Fix i18n order * Revert "Fix i18n order" This reverts commit 499f7eaca8180336f5bcca360cc0133365899e08. * Update i18n strings
57 строки
1.5 KiB
Go
57 строки
1.5 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
import "reflect"
|
|
|
|
type FeatureFlags struct {
|
|
// Exists only for unit and manual testing.
|
|
// When set to a value, will be returned by the ping endpoint.
|
|
TestFeature string
|
|
// Exists only for testing bool functionality. Boolean feature flags interpret "on" or "true" as true and
|
|
// all other values as false.
|
|
TestBoolFeature bool
|
|
|
|
// Toggle on and off scheduled jobs for cloud user limit emails see MM-29999
|
|
CloudDelinquentEmailJobsEnabled bool
|
|
|
|
// 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"`
|
|
}
|
|
|
|
func (f *FeatureFlags) SetDefaults() {
|
|
f.TestFeature = "off"
|
|
f.TestBoolFeature = false
|
|
f.CloudDelinquentEmailJobsEnabled = false
|
|
f.CollapsedThreads = false
|
|
f.CustomUserStatuses = false
|
|
f.PluginIncidentManagement = "1.4.0"
|
|
}
|
|
|
|
func (f *FeatureFlags) Plugins() map[string]string {
|
|
rFFVal := reflect.ValueOf(f).Elem()
|
|
rFFType := reflect.TypeOf(f).Elem()
|
|
|
|
pluginVersions := make(map[string]string)
|
|
for i := 0; i < rFFVal.NumField(); i++ {
|
|
rFieldVal := rFFVal.Field(i)
|
|
rFieldType := rFFType.Field(i)
|
|
|
|
pluginId, hasPluginId := rFieldType.Tag.Lookup("plugin_id")
|
|
if !hasPluginId {
|
|
continue
|
|
}
|
|
|
|
pluginVersions[pluginId] = rFieldVal.String()
|
|
}
|
|
|
|
return pluginVersions
|
|
}
|