From 2185624119e8ddd9ba80e367f0fb2c6219c0f128 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 20 Jul 2024 17:34:51 +0200 Subject: [PATCH] Implement Groups page --- dashboard/src/common/routes/index.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dashboard/src/common/routes/index.jsx b/dashboard/src/common/routes/index.jsx index e6bf080..690c571 100644 --- a/dashboard/src/common/routes/index.jsx +++ b/dashboard/src/common/routes/index.jsx @@ -13,6 +13,7 @@ import Info from "@/states/Dashboard/pages/Info"; import Statistic from "@/states/Dashboard/pages/Statistic"; import Licenses from "@/states/Dashboard/pages/Licenses"; import Permissions from "@/states/Dashboard/pages/Permissions"; +import Groups from "@/states/Dashboard/pages/Groups"; export const routes = [ {path: "/", element: }, @@ -20,7 +21,7 @@ export const routes = [ {path: "/projects/:projectId/stats", element: }, {path: "/projects/:projectId/licenses", element: }, {path: "/projects/:projectId/permissions", element: }, - {path: "/projects/:projectId/groups", element:

Groups

}, + {path: "/projects/:projectId/groups", element: }, {path: "/projects/:projectId/meta", element:

Meta-Data

}, {path: "/projects/:projectId/keys", element:

Access keys

}, {path: "/projects/:projectId/members", element:

Members

},