mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -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',
|
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
|
// Compare
|
||||||
// ----------------------------------
|
// ----------------------------------
|
||||||
|
|
Loading…
Reference in a new issue