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