feat: add plugin registry and server operations

This commit is contained in:
2026-08-13 17:37:18 +07:00
parent 3f09e330be
commit 71a21b7b79
39 changed files with 2201 additions and 320 deletions
+3
View File
@@ -65,6 +65,9 @@ export default function ServersPage() {
type="normal"
servers={normalServers}
onEdit={isAdmin ? (id) => router.push(`/dashboard/servers/edit/${id}`) : undefined}
onManage={
isAdmin ? (id) => router.push(`/dashboard/servers/manage/${id}`) : undefined
}
onDelete={isAdmin ? (id) => setDeleteTarget({ id, type: "normal" }) : undefined}
/>
</ResourceSection>