mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix(Ldap Node): Add DN field to update operation (#6371)
This commit is contained in:
parent
4488f93c39
commit
9396e7eb58
|
@ -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
|
||||
// ----------------------------------
|
||||
|
|
Loading…
Reference in a new issue