Skip to content

Commit

Permalink
Also add objectGUID to properties.BINARY_DEFAULTS
Browse files Browse the repository at this point in the history
  • Loading branch information
rnixx committed Dec 7, 2017
1 parent 15cf298 commit d336659
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ History
1.0b7 (unreleased)
------------------

- Add ``objectSid`` from AD schema to ``properties.BINARY_DEFAULTS``.
- Add ``objectSid`` and ``objectGUID`` from Active Directory schema to
``properties.BINARY_DEFAULTS``.
[rnix]

- Fix default value of ``LDAPStorage._multivalued_attributes`` and
Expand Down
3 changes: 2 additions & 1 deletion src/node/ext/ldap/properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
'photo',
'jpegPhoto',
# active directory
'objectSid'
'objectSid',
'objectGUID'
])


Expand Down
3 changes: 2 additions & 1 deletion src/node/ext/ldap/properties.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ Defaults::
... 'crossCertificatePair',
... 'objectSid',
... 'userSMIMECertificate',
... 'jpegPhoto'
... 'jpegPhoto',
... 'objectGUID'
... ]))

Test LDAPPropes::
Expand Down

0 comments on commit d336659

Please sign in to comment.