Fix table layout for the change operation
This commit is contained in:
parent
988467911c
commit
87f8e25f48
|
@ -156,9 +156,11 @@ A `Change` object maps to the LDAP protocol of a modify change, and requires you
|
|||
to set the `operation` and `modification`. The `operation` is a string, and
|
||||
must be one of:
|
||||
|
||||
||replace||Replaces the attribute referenced in `modification`. If the modification has no values, it is equivalent to a delete.||
|
||||
||add||Adds the attribute value(s) referenced in `modification`. The attribute may or may not already exist.||
|
||||
||delete||Deletes the attribute (and all values) referenced in `modification`.||
|
||||
| Operation | Description |
|
||||
|-----------|-------------|
|
||||
| replace | Replaces the attribute referenced in `modification`. If the modification has no values, it is equivalent to a delete. |
|
||||
| add | Adds the attribute value(s) referenced in `modification`. The attribute may or may not already exist. |
|
||||
| delete | Deletes the attribute (and all values) referenced in `modification`. |
|
||||
|
||||
`modification` is just a plain old JS object with the values you want.
|
||||
|
||||
|
|
Loading…
Reference in New Issue