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 35s
CI / test-python-backend-compliance (push) Successful in 38s
CI / test-python-document-crawler (push) Successful in 25s
CI / test-python-dsms-gateway (push) Successful in 21s
- Backend: compliance_obligations Tabelle (Migration 013) - Backend: obligation_routes.py — GET/POST/PUT/DELETE + Stats-Endpoint - Backend: obligation_router in __init__.py registriert - Frontend: obligations/page.tsx — ObligationModal, ObligationDetail, ObligationCard, alle Buttons verdrahtet - Proxy: PATCH-Methode in compliance catch-all route ergänzt - Tests: 39/39 Obligation-Tests (Schemas, Helpers, Business Logic) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
55 lines
1.8 KiB
Python
55 lines
1.8 KiB
Python
"""API routes for Compliance module."""
|
|
|
|
from .routes import router
|
|
from .audit_routes import router as audit_router
|
|
from .ai_routes import router as ai_router
|
|
from .evidence_routes import router as evidence_router
|
|
from .risk_routes import router as risk_router
|
|
from .dashboard_routes import router as dashboard_router
|
|
from .scraper_routes import router as scraper_router
|
|
from .module_routes import router as module_router
|
|
from .isms_routes import router as isms_router
|
|
from .vvt_routes import router as vvt_router
|
|
from .legal_document_routes import router as legal_document_router
|
|
from .einwilligungen_routes import router as einwilligungen_router
|
|
from .escalation_routes import router as escalation_router
|
|
from .consent_template_routes import router as consent_template_router
|
|
from .notfallplan_routes import router as notfallplan_router
|
|
from .obligation_routes import router as obligation_router
|
|
|
|
# Include sub-routers
|
|
router.include_router(audit_router)
|
|
router.include_router(ai_router)
|
|
router.include_router(evidence_router)
|
|
router.include_router(risk_router)
|
|
router.include_router(dashboard_router)
|
|
router.include_router(scraper_router)
|
|
router.include_router(module_router)
|
|
router.include_router(isms_router)
|
|
router.include_router(vvt_router)
|
|
router.include_router(legal_document_router)
|
|
router.include_router(einwilligungen_router)
|
|
router.include_router(escalation_router)
|
|
router.include_router(consent_template_router)
|
|
router.include_router(notfallplan_router)
|
|
router.include_router(obligation_router)
|
|
|
|
__all__ = [
|
|
"router",
|
|
"audit_router",
|
|
"ai_router",
|
|
"evidence_router",
|
|
"risk_router",
|
|
"dashboard_router",
|
|
"scraper_router",
|
|
"module_router",
|
|
"isms_router",
|
|
"vvt_router",
|
|
"legal_document_router",
|
|
"einwilligungen_router",
|
|
"escalation_router",
|
|
"consent_template_router",
|
|
"notfallplan_router",
|
|
"obligation_router",
|
|
]
|