Implement contact plugins

This commit is contained in:
MM20
2025-04-06 12:53:38 +02:00
parent cab93f87aa
commit 02cec92d72
14 changed files with 321 additions and 59 deletions
@@ -19,6 +19,9 @@ interface Contact : SavableSearchable {
val postalAddresses: List<PostalAddress>
val customActions: List<CustomContactAction>
override val label: String
get() = name
val summary: String
get() {
return (phoneNumbers.map { it.number } + emailAddresses.map { it.address })