Skip to content

Commit

Permalink
fix: support for RFC 6474
Browse files Browse the repository at this point in the history
Signed-off-by: SebastianKrupinski <[email protected]>
  • Loading branch information
SebastianKrupinski committed Oct 7, 2024
1 parent dedf944 commit b4e205d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/models/rfcProps.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,12 @@ const properties = {
],
primary: true,
},
birthplace: {
readableName: t('contacts', 'Place of birth'),
icon: 'icon-location',
force: 'text',
primary: false,
},
anniversary: {
readableName: t('contacts', 'Anniversary'),
icon: 'icon-anniversary',
Expand All @@ -153,6 +159,12 @@ const properties = {
},
primary: false,
},
deathplace: {
readableName: t('contacts', 'Place of death'),
icon: 'icon-location',
force: 'text',
primary: false,
},
email: {
multiple: true,
readableName: t('contacts', 'Email'),
Expand Down Expand Up @@ -396,8 +408,10 @@ const fieldOrder = [
'x-managersname',

// secondary fields
'birthplace',
'anniversary',
'deathdate',
'deathplace',
'n',
'nickname',
'x-phonetic-first-name',
Expand Down

0 comments on commit b4e205d

Please sign in to comment.