mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-03 08:45:40 +02:00
9b9682f626
* create FeatureFlags in configurations * update for unit tests * update unit tests, go.mod * update go.sum * fix lint errors Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
9 lines
316 B
Go
9 lines
316 B
Go
package model
|
|
|
|
type ClientConfig struct {
|
|
Telemetry bool `json:"telemetry"`
|
|
TelemetryID string `json:"telemetryid"`
|
|
EnablePublicSharedBoards bool `json:"enablePublicSharedBoards"`
|
|
FeatureFlags map[string]string `json:"featureFlags"`
|
|
}
|