2022-03-24 16:42:53 -06:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-03-24 16:42:53 -06:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-03-24 16:42:53 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export enum UserTab {
|
2024-08-06 18:05:08 +01:00
|
|
|
Account = "USER_ACCOUNT_TAB",
|
2022-03-24 16:42:53 -06:00
|
|
|
Appearance = "USER_APPEARANCE_TAB",
|
|
|
|
|
Notifications = "USER_NOTIFICATIONS_TAB",
|
|
|
|
|
Preferences = "USER_PREFERENCES_TAB",
|
|
|
|
|
Keyboard = "USER_KEYBOARD_TAB",
|
|
|
|
|
Sidebar = "USER_SIDEBAR_TAB",
|
|
|
|
|
Voice = "USER_VOICE_TAB",
|
|
|
|
|
Security = "USER_SECURITY_TAB",
|
|
|
|
|
Labs = "USER_LABS_TAB",
|
|
|
|
|
Mjolnir = "USER_MJOLNIR_TAB",
|
|
|
|
|
Help = "USER_HELP_TAB",
|
2022-08-08 15:51:00 +02:00
|
|
|
SessionManager = "USER_SESSION_MANAGER_TAB",
|
2022-03-24 16:42:53 -06:00
|
|
|
}
|