fix(cleanup): ISMS Bugfix, 13 tote AI-Endpoints entfernt, Compliance-Hub Proxy fix
All checks were successful
CI / go-lint (push) Has been skipped
CI / python-lint (push) Has been skipped
CI / nodejs-lint (push) Has been skipped
CI / test-go-ai-compliance (push) Successful in 33s
CI / test-python-backend-compliance (push) Successful in 34s
CI / test-python-document-crawler (push) Successful in 22s
CI / test-python-dsms-gateway (push) Successful in 18s

- ISMS: markStepCompleted entfernt (existiert nicht in SDKContext, verursachte Application Error)
- AI Routes: 13 ungenutzte Endpoints entfernt (ai_routes.py 1266→379 Zeilen, -887)
- Schemas: 12 ungenutzte AI-Schema-Klassen entfernt (-108 Zeilen)
- Compliance-Hub: 5 Fetch-URLs von /api/admin/... auf /api/sdk/v1/... umgestellt
- Tests: 1361 passed, 0 Regressionen

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-03-07 15:13:19 +01:00
parent 9e65dff7d6
commit 7ec6b9f6c0
4 changed files with 12 additions and 1014 deletions

View File

@@ -1,7 +1,6 @@
'use client'
import React, { useState, useEffect, useCallback } from 'react'
import { useSDK } from '@/lib/sdk'
// =============================================================================
// TYPES
@@ -1220,12 +1219,6 @@ const TABS: { id: TabId; label: string }[] = [
export default function ISMSPage() {
const [tab, setTab] = useState<TabId>('overview')
const { markStepCompleted } = useSDK()
useEffect(() => {
markStepCompleted('isms')
}, [markStepCompleted])
return (
<div className="min-h-screen bg-gray-50 p-6">
<div className="max-w-7xl mx-auto">