updated the modification object in ldap.change

This commit is contained in:
Mihir Bhansali 2023-06-27 10:11:24 -04:00
parent f2890088e4
commit 3fbc1aeae7
1 changed files with 2 additions and 1 deletions

View File

@ -213,7 +213,8 @@ Example:
const change = new ldap.Change({
operation: 'add',
modification: {
pets: ['cat', 'dog']
type: 'pets',
values: ['cat', 'dog']
}
});