Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/admin/admin.routes.ts
2500 views
1
/**
2
* Copyright (c) 2021 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
import { TabEntry } from "../components/Header";
7
8
export function getAdminTabs(): TabEntry[] {
9
return [
10
{
11
title: "Users",
12
link: "/admin/users",
13
alternatives: ["/admin"],
14
},
15
{
16
title: "Workspaces",
17
link: "/admin/workspaces",
18
},
19
{
20
title: "Projects",
21
link: "/admin/projects",
22
},
23
{
24
title: "Organizations",
25
link: "/admin/orgs",
26
},
27
{
28
title: "Blocked Repositories",
29
link: "/admin/blocked-repositories",
30
},
31
{
32
title: "Blocked Email Domains",
33
link: "/admin/blocked-email-domains",
34
},
35
];
36
}
37
38