Übersicht der Kontakte

Dieser Commit ist enthalten in:
2025-06-19 17:59:50 +02:00
Ursprung 0e79e5ed57
Commit 9e5843afcf
5 geänderte Dateien mit 291 neuen und 2 gelöschten Zeilen

Datei anzeigen

@@ -143,4 +143,8 @@ class LeadService:
"""Delete a note (soft delete)"""
success = self.repo.delete_note(note_id)
return success
return success
def list_all_contacts(self) -> List[Dict[str, Any]]:
"""Get all contacts across all institutions with summary info"""
return self.repo.get_all_contacts_with_institutions()