summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Mielke <stefan@tan3.de>2023-05-02 14:47:37 +0200
committerStefan Mielke <stefan@tan3.de>2023-05-02 14:47:37 +0200
commit01d0fd634471a45972c7353573ccc725705a6e64 (patch)
treec626eed41c6ccda4c900b228ed96ceae52f0a2d3
parentd511c26184a6e2d958cc88daa823fd59baf49d3e (diff)
add fields to searched properties
Signed-off-by: Stefan Mielke <stefan@tan3.de>
-rw-r--r--src/models/contact.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/models/contact.js b/src/models/contact.js
index cc70f3f4..eef631bb 100644
--- a/src/models/contact.js
+++ b/src/models/contact.js
@@ -41,7 +41,7 @@ const isEmpty = value => {
export const ContactKindProperties = ['KIND', 'X-ADDRESSBOOKSERVER-KIND']
export const MinimalContactProperties = [
- 'EMAIL', 'UID', 'CATEGORIES', 'FN', 'ORG', 'N', 'X-PHONETIC-FIRST-NAME', 'X-PHONETIC-LAST-NAME', 'X-MANAGERSNAME', 'TITLE',
+ 'EMAIL', 'UID', 'CATEGORIES', 'FN', 'ORG', 'N', 'X-PHONETIC-FIRST-NAME', 'X-PHONETIC-LAST-NAME', 'X-MANAGERSNAME', 'TITLE', 'NOTES', 'RELATED'
].concat(ContactKindProperties)
export default class Contact {