From c5998f5e5f130b861aad552eb4316599e350c9f1 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 21 Jul 2024 13:26:17 +0200 Subject: [PATCH] Implement AccessKeys 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 2833bfd..f8a34f6 100644 --- a/dashboard/src/common/routes/index.jsx +++ b/dashboard/src/common/routes/index.jsx @@ -15,6 +15,7 @@ import Licenses from "@/states/Dashboard/pages/Licenses"; import Permissions from "@/states/Dashboard/pages/Permissions"; import Groups from "@/states/Dashboard/pages/Groups"; import MetaData from "@/states/Dashboard/pages/MetaData"; +import AccessKeys from "@/states/Dashboard/pages/AccessKeys"; export const routes = [ {path: "/", element: }, @@ -24,7 +25,7 @@ export const routes = [ {path: "/projects/:projectId/permissions", element: }, {path: "/projects/:projectId/groups", element: }, {path: "/projects/:projectId/meta", element: }, - {path: "/projects/:projectId/keys", element:

Access keys

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

Members

}, {path: "/projects/:projectId/info", element: } ]