Add group management feature

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 9111ef36-26c8-4085-84ca-a35dc1fec1b5
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7083d608-d6d3-4a6a-9a27-6286c5109627/6cd84756-6960-4edd-8c02-c70b65ec2a57.jpg
This commit is contained in:
alphaeusmote
2025-04-10 12:24:20 +00:00
parent 7e91d9a63e
commit db3871e6b1
2 changed files with 985 additions and 0 deletions
+2
View File
@@ -12,6 +12,7 @@ import HistoryPage from "@/pages/history";
import ApiTokensPage from "@/pages/api-tokens";
import UsersRolesPage from "@/pages/users-roles";
import RolesPage from "@/pages/roles";
import GroupsPage from "@/pages/groups";
import ProvidersPage from "@/pages/providers";
import SettingsPage from "@/pages/settings";
import OrganizationsPage from "@/pages/organizations";
@@ -35,6 +36,7 @@ function Router() {
<ProtectedRoute path="/api-tokens" component={ApiTokensPage} />
<ProtectedRoute path="/users-roles" component={UsersRolesPage} />
<ProtectedRoute path="/roles" component={RolesPage} />
<ProtectedRoute path="/groups" component={GroupsPage} />
<ProtectedRoute path="/providers" component={ProvidersPage} />
<ProtectedRoute path="/webhooks" component={WebhooksPage} />
<ProtectedRoute path="/webhook-logs" component={WebhookLogsPage} />