mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-12 13:27:31 -08:00
Merge branch 'master' of https://github.com/Robarelli/n8n
This commit is contained in:
commit
e19c83eca9
|
@ -1420,6 +1420,7 @@ export class Pipedrive implements INodeType {
|
|||
show: {
|
||||
operation: [
|
||||
'create',
|
||||
'getAll'
|
||||
],
|
||||
resource: [
|
||||
'note',
|
||||
|
@ -2516,13 +2517,14 @@ export class Pipedrive implements INodeType {
|
|||
// ----------------------------------
|
||||
|
||||
requestMethod = 'GET';
|
||||
endpoint = `/notes`;
|
||||
|
||||
returnAll = this.getNodeParameter('returnAll', i) as boolean;
|
||||
if (returnAll === false) {
|
||||
qs.limit = this.getNodeParameter('limit', i) as number;
|
||||
}
|
||||
|
||||
endpoint = `/notes`;
|
||||
const additionalFields = this.getNodeParameter('additionalFields', i) as IDataObject;
|
||||
addAdditionalFields(qs, additionalFields);
|
||||
|
||||
} else if (operation === 'update') {
|
||||
// ----------------------------------
|
||||
|
|
Loading…
Reference in a new issue