Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/repositories/repositories.routes.ts
2501 views
1
/**
2
* Copyright (c) 2024 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 repositoriesRoutes = {
8
Main: () => "/repositories",
9
Detail: (id: string) => `/repositories/${id}`,
10
Configuration: (id: string) => `/repositories/${id}/configuration`,
11
PrebuildsSettings: (id: string) => `/repositories/${id}/prebuilds`,
12
WorkspaceSettings: (id: string) => `/repositories/${id}/workspaces`,
13
EditorSettings: (id: string) => `/repositories/${id}/editors`,
14
Prebuilds: () => `/prebuilds`,
15
PrebuildDetail: (prebuildId: string) => `/prebuilds/${prebuildId}`,
16
};
17
18