e59db34a6d
- K-REG: GET /api/v1/compliance/ai-registry — lists all agents with ai_use_case_metadata - K-DPIA: GET /api/v1/compliance/dpia-template — pre-filled DPIA template export - K-INC: ComplianceIncident model, Migration 0133 (RLS), CRUD routes (admin-only) - K-RET: GET/PATCH /api/v1/compliance/retention-policies — 5 policies editable - K-COMP-TEST: 12/12 integration tests pass - K-DOC: docs/compliance.md — Betriebsdoku - Frontend: ComplianceTab.tsx in SettingsAI.tsx (new tab) - 13 files created/modified
31 lines
896 B
Python
31 lines
896 B
Python
"""Routes package."""
|
|
|
|
from app.routes import (
|
|
addresses, # noqa: F401
|
|
ai_copilot, # noqa: F401
|
|
attachments, # noqa: F401
|
|
audit, # noqa: F401
|
|
compliance, # noqa: F401
|
|
auth, # noqa: F401
|
|
bank_accounts, # noqa: F401
|
|
contacts, # noqa: F401
|
|
currencies, # noqa: F401
|
|
dashboard, # noqa: F401
|
|
entity_history, # noqa: F401
|
|
guests, # noqa: F401 # ⚠️ Guest-System umgebaut — Guests sind jetzt reguläre User mit role=guest
|
|
health, # noqa: F401
|
|
import_export, # noqa: F401
|
|
metrics, # noqa: F401
|
|
notifications, # noqa: F401
|
|
plugins, # noqa: F401
|
|
roles, # noqa: F401
|
|
sequences, # noqa: F401
|
|
system_dashboard, # noqa: F401
|
|
system_settings, # noqa: F401
|
|
taxes, # noqa: F401
|
|
tenants, # noqa: F401
|
|
user_preferences, # noqa: F401
|
|
users, # noqa: F401
|
|
workflows, # noqa: F401
|
|
)
|