Add role management page

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/d62e0c80-a2f3-41da-afc0-1d9e4fd98854.jpg
This commit is contained in:
alphaeusmote
2025-04-10 02:34:51 +00:00
parent 0ceaf78243
commit 35d2af8410
2 changed files with 907 additions and 0 deletions
+2
View File
@@ -11,6 +11,7 @@ import MetricsPage from "@/pages/metrics";
import HistoryPage from "@/pages/history";
import ApiTokensPage from "@/pages/api-tokens";
import UsersRolesPage from "@/pages/users-roles";
import RolesPage from "@/pages/roles";
import ProvidersPage from "@/pages/providers";
import SettingsPage from "@/pages/settings";
import OrganizationsPage from "@/pages/organizations";
@@ -33,6 +34,7 @@ function Router() {
<ProtectedRoute path="/history" component={HistoryPage} />
<ProtectedRoute path="/api-tokens" component={ApiTokensPage} />
<ProtectedRoute path="/users-roles" component={UsersRolesPage} />
<ProtectedRoute path="/roles" component={RolesPage} />
<ProtectedRoute path="/providers" component={ProvidersPage} />
<ProtectedRoute path="/webhooks" component={WebhooksPage} />
<ProtectedRoute path="/webhook-logs" component={WebhookLogsPage} />