2021-09-01 23:53:27 +02:00
|
|
|
package model
|
|
|
|
|
2022-04-15 19:21:10 +02:00
|
|
|
// ClientConfig is the client configuration
|
|
|
|
// swagger:model
|
2021-09-01 23:53:27 +02:00
|
|
|
type ClientConfig struct {
|
2022-04-15 19:21:10 +02:00
|
|
|
// 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"`
|
|
|
|
|
2022-07-08 16:43:43 +02:00
|
|
|
// Is public shared boards enabled
|
|
|
|
// required: true
|
|
|
|
TeammateNameDisplay string `json:"teammateNameDisplay"`
|
|
|
|
|
2022-04-15 19:21:10 +02:00
|
|
|
// The server feature flags
|
|
|
|
// required: true
|
|
|
|
FeatureFlags map[string]string `json:"featureFlags"`
|
2022-11-24 12:46:59 +01:00
|
|
|
|
|
|
|
// Required for file upload to check the size of the file
|
|
|
|
// required: true
|
|
|
|
MaxFileSize int64 `json:"maxFileSize"`
|
2021-09-01 23:53:27 +02:00
|
|
|
}
|