feat: DSFA als TemplateType + Kategorie im Document Generator
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 34s
CI / test-python-backend-compliance (push) Successful in 30s
CI / test-python-document-crawler (push) Successful in 22s
CI / test-python-dsms-gateway (push) Successful in 17s

- TemplateType-Union um 'dsfa' erweitert
- TEMPLATE_TYPE_LABELS: dsfa → 'Datenschutz-Folgenabschätzung'
- Document Generator: Kategorie-Tab 'DSFA' hinzugefügt

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Benjamin Admin
2026-03-04 23:54:29 +01:00
parent 93c200626c
commit 6a8289246c
2 changed files with 3 additions and 0 deletions

View File

@@ -43,6 +43,7 @@ const CATEGORIES: { key: string; label: string; types: string[] | null }[] = [
{ key: 'cookie', label: 'Cookie', types: ['cookie_policy', 'cookie_banner'] },
{ key: 'cloud', label: 'Cloud', types: ['cloud_service_agreement'] },
{ key: 'misc', label: 'Weitere', types: ['community_guidelines', 'copyright_policy', 'data_usage_clause'] },
{ key: 'dsfa', label: 'DSFA', types: ['dsfa'] },
]
// =============================================================================

View File

@@ -1834,6 +1834,7 @@ export type TemplateType =
| 'community_guidelines'
| 'copyright_policy'
| 'clause'
| 'dsfa'
/**
* Jurisdiction codes for legal documents
@@ -2084,6 +2085,7 @@ export const TEMPLATE_TYPE_LABELS: Record<TemplateType, string> = {
community_guidelines: 'Community-Richtlinien',
copyright_policy: 'Urheberrechtsrichtlinie',
clause: 'Vertragsklausel',
dsfa: 'Datenschutz-Folgenabschätzung',
}
/**