mirror of
https://github.com/vector-im/element-web.git
synced 2026-04-21 21:42:29 +02:00
* Use the code signing Subject Name as basis for Tray GUID on Windows Fixes https://github.com/element-hq/element-web/issues/32907 * Delint * Iterate * Add missing imports
11 lines
290 B
TypeScript
11 lines
290 B
TypeScript
/*
|
|
Copyright 2026 Element Creations Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
export function getBrand(): string {
|
|
return global.vectorConfig.brand || "Element";
|
|
}
|