154c344077
* Fix #2800. Add missing Swagger docs * Add note that timestamps are in miliseconds * Fix merge, update docs.
21 lines
490 B
Go
21 lines
490 B
Go
package model
|
|
|
|
// ClientConfig is the client configuration
|
|
// swagger:model
|
|
type ClientConfig struct {
|
|
// Is telemetry enabled
|
|
// required: true
|
|
Telemetry bool `json:"telemetry"`
|
|
|
|
// The telemetry ID
|
|
// required: true
|
|
TelemetryID string `json:"telemetryid"`
|
|
|
|
// Is public shared boards enabled
|
|
// required: true
|
|
EnablePublicSharedBoards bool `json:"enablePublicSharedBoards"`
|
|
|
|
// The server feature flags
|
|
// required: true
|
|
FeatureFlags map[string]string `json:"featureFlags"`
|
|
}
|