22 lines
683 B
TypeScript
22 lines
683 B
TypeScript
/*
|
|||
|
|
Copyright 2024 New Vector Ltd.
|
||
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
||
|
|
Copyright 2019 New Vector Ltd
|
||
|
|
Copyright 2019 Michael Telatynski <7t3chguy@gmail.com>
|
||
|
|
|
||
|
|
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 const enum RoomSettingsTab {
|
||
|
|
General = "ROOM_GENERAL_TAB",
|
||
|
|
People = "ROOM_PEOPLE_TAB",
|
||
|
|
Voip = "ROOM_VOIP_TAB",
|
||
|
|
Security = "ROOM_SECURITY_TAB",
|
||
|
|
Roles = "ROOM_ROLES_TAB",
|
||
|
|
Notifications = "ROOM_NOTIFICATIONS_TAB",
|
||
|
|
Bridges = "ROOM_BRIDGES_TAB",
|
||
|
|
Advanced = "ROOM_ADVANCED_TAB",
|
||
|
|
PollHistory = "ROOM_POLL_HISTORY_TAB",
|
||
|
|
}
|