mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
⚡ Minor improvements to Trello-Node
This commit is contained in:
@@ -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
|
||||
// ----------------------------------
|
||||
|
||||
Reference in New Issue
Block a user