fix(docs): correct person/notification domain README signatures
Some checks failed
CI / OCR Service Tests (push) Has been cancelled
CI / Backend Unit Tests (push) Has been cancelled
CI / Unit & Component Tests (push) Has been cancelled

- person/README.md: findAll(String q) and findByName(String firstName, String lastName)
- notification/README.md: replace 'None inbound' with actual outbound dep on DocumentService.findTitlesByIds

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit was merged in pull request #444.
This commit is contained in:
Marcel
2026-05-06 07:10:03 +02:00
committed by marcel
parent 995c696c6a
commit 513fda2888
2 changed files with 4 additions and 3 deletions

View File

@@ -33,7 +33,8 @@ Features: create and deliver notifications, unread count, mark-read, SSE real-ti
## Cross-domain dependencies
- None inbound (this domain is a consumer, not a provider for business logic)
**Outbound (this domain calls):**
- `DocumentService.findTitlesByIds(List<UUID>)` — enriches notification DTOs with document titles for display in the bell dropdown
## Frontend counterpart

View File

@@ -19,8 +19,8 @@ Features: person CRUD, name alias management, person merge (deduplication), fami
|---|---|---|
| `getById(UUID)` | document, geschichte, ocr | Fetch one person by ID |
| `getAllById(List<UUID>)` | document | Bulk fetch for sender/receiver resolution |
| `findAll()` | document, dashboard | List all persons |
| `findByName(String)` | document | Typeahead search |
| `findAll(String q)` | document, dashboard | List all persons |
| `findByName(String firstName, String lastName)` | document | Typeahead search |
| `findOrCreateByAlias(String rawName)` | importing | Idempotent create during mass import; type classification happens internally |
| `findAllFamilyMembers()` | dashboard | Family member list for stats |
| `findCorrespondents()` | document | Correspondent list for conversation filter |