fix(Ldap Node): Add DN field to update operation (#6371)

This commit is contained in:
Jon 2023-06-07 10:31:35 +01:00 committed by GitHub
parent 4488f93c39
commit 9396e7eb58
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -89,6 +89,23 @@ export const ldapFields: INodeProperties[] = [
},
description: 'The distinguished name of the entry to modify',
},
{
displayName: 'DN',
name: 'dn',
type: 'string',
default: '',
placeholder: 'e.g. ou=users,dc=n8n,dc=io',
required: true,
typeOptions: {
alwaysOpenEditWindow: false,
},
displayOptions: {
show: {
operation: ['update'],
},
},
description: 'The distinguished name of the entry to update',
},
// ----------------------------------
// Compare
// ----------------------------------