Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/user-settings/settings.routes.ts
2500 views
1
/**
2
* Copyright (c) 2022 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
export const settingsPathMain = "/user/settings";
8
export const usagePathMain = "/usage";
9
10
export const settingsPathAccount = "/user/account";
11
export const settingsPathIntegrations = "/user/integrations";
12
export const settingsPathNotifications = "/user/notifications";
13
export const settingsPathPreferences = "/user/preferences";
14
export const settingsPathVariables = "/user/variables";
15
export const settingsPathPersonalAccessTokens = "/user/tokens";
16
export const settingsPathPersonalAccessTokenCreate = "/user/tokens/create";
17
export const settingsPathPersonalAccessTokenEdit = "/user/tokens/edit";
18
19
export const settingsPathSSHKeys = "/user/keys";
20
21
// Old billing-related pages deprecated with Chargebee removal
22
// Let's keep them around until end of July to have meaningful redirects
23
// TODO(gpl): Cleanup afterwards
24
export const switchToPAYGPathMain = "/switch-to-payg";
25
export const settingsPathPlans = "/user/plans";
26
27