Path: blob/main/components/dashboard/src/user-settings/settings.routes.ts
2500 views
/**1* Copyright (c) 2022 Gitpod GmbH. All rights reserved.2* Licensed under the GNU Affero General Public License (AGPL).3* See License.AGPL.txt in the project root for license information.4*/56export const settingsPathMain = "/user/settings";7export const usagePathMain = "/usage";89export const settingsPathAccount = "/user/account";10export const settingsPathIntegrations = "/user/integrations";11export const settingsPathNotifications = "/user/notifications";12export const settingsPathPreferences = "/user/preferences";13export const settingsPathVariables = "/user/variables";14export const settingsPathPersonalAccessTokens = "/user/tokens";15export const settingsPathPersonalAccessTokenCreate = "/user/tokens/create";16export const settingsPathPersonalAccessTokenEdit = "/user/tokens/edit";1718export const settingsPathSSHKeys = "/user/keys";1920// Old billing-related pages deprecated with Chargebee removal21// Let's keep them around until end of July to have meaningful redirects22// TODO(gpl): Cleanup afterwards23export const switchToPAYGPathMain = "/switch-to-payg";24export const settingsPathPlans = "/user/plans";252627