2021-09-01 23:53:27 +02:00
|
|
|
package app
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mattermost/focalboard/server/model"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (a *App) GetClientConfig() *model.ClientConfig {
|
|
|
|
return &model.ClientConfig{
|
2021-09-16 21:31:02 +02:00
|
|
|
Telemetry: a.config.Telemetry,
|
|
|
|
TelemetryID: a.config.TelemetryID,
|
|
|
|
EnablePublicSharedBoards: a.config.EnablePublicSharedBoards,
|
2021-09-01 23:53:27 +02:00
|
|
|
}
|
|
|
|
}
|