Skip to content

Commit

Permalink
fix(Ldap Node): Add DN field to update operation (#6371)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joffcom authored Jun 7, 2023
1 parent 4488f93 commit 9396e7e
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions packages/nodes-base/nodes/Ldap/LdapDescription.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
// ----------------------------------
Expand Down

0 comments on commit 9396e7e

Please sign in to comment.