Mono repo -> Master (#22553)
Combines the following repositories into one: https://github.com/mattermost/mattermost-server https://github.com/mattermost/mattermost-webapp https://github.com/mattermost/focalboard https://github.com/mattermost/mattermost-plugin-playbooks
Этот коммит содержится в:
32
server/boards/model/clientConfig.go
Обычный файл
32
server/boards/model/clientConfig.go
Обычный файл
@@ -0,0 +1,32 @@
|
||||
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
||||
// See LICENSE.txt for license information.
|
||||
|
||||
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"`
|
||||
|
||||
// Is public shared boards enabled
|
||||
// required: true
|
||||
TeammateNameDisplay string `json:"teammateNameDisplay"`
|
||||
|
||||
// The server feature flags
|
||||
// required: true
|
||||
FeatureFlags map[string]string `json:"featureFlags"`
|
||||
|
||||
// Required for file upload to check the size of the file
|
||||
// required: true
|
||||
MaxFileSize int64 `json:"maxFileSize"`
|
||||
}
|
||||
Ссылка в новой задаче
Block a user