Minor improvements to Trello-Node

This commit is contained in:
Jan Oberhauser
2020-08-25 08:27:26 +02:00
parent 4c075db26c
commit 98edb353d4
5 changed files with 20 additions and 20 deletions

View File

@@ -276,9 +276,9 @@ export class Trello implements INodeType {
} else if (resource === 'cardComment') {
if (operation === 'add') {
if (operation === 'create') {
// ----------------------------------
// add
// create
// ----------------------------------
const cardId = this.getNodeParameter('cardId', i) as string;
@@ -290,7 +290,7 @@ export class Trello implements INodeType {
endpoint = `cards/${cardId}/actions/comments`;
} else if (operation === 'remove') {
} else if (operation === 'delete') {
// ----------------------------------
// delete
// ----------------------------------