main

mattermost/focalboard

Last updated at: 29/12/2023 09:48

clientConfig.ts

TLDR

This file exports the ClientConfig type, which represents the configuration settings for the client. It includes properties such as telemetry, public shared boards, feature flags, teammate name display, and max file size.

END

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

export type ClientConfig = {
    telemetry: boolean
    telemetryid: string
    enablePublicSharedBoards: boolean
    featureFlags: Record<string, string>
    teammateNameDisplay: string
    maxFileSize: number
}