👕 Fix lint issue

This commit is contained in:
Jan Oberhauser
2020-10-22 15:46:03 +02:00
parent 5b7efd67ca
commit 40c2acd77b
491 changed files with 4045 additions and 3936 deletions

View File

@@ -35,7 +35,7 @@ export class ActiveCampaignTrigger implements INodeType {
{
name: 'activeCampaignApi',
required: true,
}
},
],
webhooks: [
{
@@ -103,7 +103,7 @@ export class ActiveCampaignTrigger implements INodeType {
}
return returnData;
},
}
},
};
// @ts-ignore
webhookMethods = {
@@ -132,7 +132,7 @@ export class ActiveCampaignTrigger implements INodeType {
url: webhookUrl,
events,
sources,
}
},
};
const { webhook } = await activeCampaignApiRequest.call(this, 'POST', '/api/3/webhooks', body);
webhookData.webhookId = webhook.id;
@@ -155,7 +155,7 @@ export class ActiveCampaignTrigger implements INodeType {
const req = this.getRequestObject();
return {
workflowData: [
this.helpers.returnJsonArray(req.body)
this.helpers.returnJsonArray(req.body),
],
};
}