mirror of
https://github.com/gnmyt/LicenseAPI.git
synced 2026-01-10 10:11:47 +00:00
Implement Groups page
This commit is contained in:
@ -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: <Home/>},
|
||||
@ -20,7 +21,7 @@ export const routes = [
|
||||
{path: "/projects/:projectId/stats", element: <Statistic />},
|
||||
{path: "/projects/:projectId/licenses", element: <Licenses />},
|
||||
{path: "/projects/:projectId/permissions", element: <Permissions />},
|
||||
{path: "/projects/:projectId/groups", element: <h1>Groups</h1>},
|
||||
{path: "/projects/:projectId/groups", element: <Groups />},
|
||||
{path: "/projects/:projectId/meta", element: <h1>Meta-Data</h1>},
|
||||
{path: "/projects/:projectId/keys", element: <h1>Access keys</h1>},
|
||||
{path: "/projects/:projectId/members", element: <h1>Members</h1>},
|
||||
|
||||
Reference in New Issue
Block a user