mirror of
https://github.com/mattermost/focalboard.git
synced 2025-01-23 18:34:02 +02:00
22aae37dd1
* retrieve additional user fields * implement config setting * cleanup * fix tests * remove unused constant * fix more tests * add tests, cleanup * lint fixes * revert bad lint fixes * more merge fixes * update to use personal setting * add user settings * update package-lock.json * lint fixes * npm audit fix * update tests * Revert "lint fixes" This reverts commit 6a50d335cad97c41d85df3fe3da17642e25ad6d6. * Revert "update package-lock.json" This reverts commit 1117e557e4513d73bd2a42e3559ea612057cddab. * Revert "npm audit fix" This reverts commit 77ea931c77da8902c51d024ccac8287d164a8776. * Revert "Revert "lint fixes"" This reverts commit 3ebd81b9fac83e605577120ac789a432a25cbffd. * restore to original * fix for empty prefs * fix bad merge Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
16 lines
432 B
Go
16 lines
432 B
Go
package app
|
|
|
|
import (
|
|
"github.com/mattermost/focalboard/server/model"
|
|
)
|
|
|
|
func (a *App) GetClientConfig() *model.ClientConfig {
|
|
return &model.ClientConfig{
|
|
Telemetry: a.config.Telemetry,
|
|
TelemetryID: a.config.TelemetryID,
|
|
EnablePublicSharedBoards: a.config.EnablePublicSharedBoards,
|
|
TeammateNameDisplay: a.config.TeammateNameDisplay,
|
|
FeatureFlags: a.config.FeatureFlags,
|
|
}
|
|
}
|