mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor: Add action to all operations on all nodes (#3655)
* 👕 Add `action` to `INodePropertyOptions` * 👕 Apply `node-param-operation-option-without-action` * ✏️ Fix add/remove phrasing * ✏️ Fix email template phrasing * ✏️ Fix add/remove phrasing * ✏️ Fix custom fields phrasing * ✏️ Fix job report phrasing * ✏️ Fix query phrasing * ✏️ Various phrasing fixes * ✏️ Fix final phrasings * ✏️ Remove `conversation` * ✏️ Fix plural
This commit is contained in:
@@ -23,46 +23,55 @@ export const checklistOperations: INodeProperties[] = [
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
description: 'Create a new checklist',
|
||||
action: 'Create a checklist',
|
||||
},
|
||||
{
|
||||
name: 'Create Checklist Item',
|
||||
value: 'createCheckItem',
|
||||
description: 'Create a checklist item',
|
||||
action: 'Create checklist item',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
description: 'Delete a checklist',
|
||||
action: 'Delete a checklist',
|
||||
},
|
||||
{
|
||||
name: 'Delete Checklist Item',
|
||||
value: 'deleteCheckItem',
|
||||
description: 'Delete a checklist item',
|
||||
action: 'Delete a checklist item',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get the data of a checklist',
|
||||
action: 'Get a checklist',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Returns all checklists for the card',
|
||||
action: 'Get all checklists',
|
||||
},
|
||||
{
|
||||
name: 'Get Checklist Items',
|
||||
value: 'getCheckItem',
|
||||
description: 'Get a specific checklist on a card',
|
||||
action: 'Get checklist items',
|
||||
},
|
||||
{
|
||||
name: 'Get Completed Checklist Items',
|
||||
value: 'completedCheckItems',
|
||||
description: 'Get the completed checklist items on a card',
|
||||
action: 'Get completed checklist items',
|
||||
},
|
||||
{
|
||||
name: 'Update Checklist Item',
|
||||
value: 'updateCheckItem',
|
||||
description: 'Update an item in a checklist on a card',
|
||||
action: 'Update a checklist item',
|
||||
},
|
||||
],
|
||||
default: 'getAll',
|
||||
|
||||
Reference in New Issue
Block a user