mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +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:
@@ -22,46 +22,55 @@ export const timeEntryOperations: INodeProperties[] = [
|
||||
name: 'Create via Duration',
|
||||
value: 'createByDuration',
|
||||
description: 'Create a time entry via duration',
|
||||
action: 'Create a time entry via duration',
|
||||
},
|
||||
{
|
||||
name: 'Create via Start and End Time',
|
||||
value: 'createByStartEnd',
|
||||
description: 'Create a time entry via start and end time',
|
||||
action: 'Create a time entry via start and end time',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
value: 'delete',
|
||||
description: 'Delete a time entry',
|
||||
action: 'Delete a time entry',
|
||||
},
|
||||
{
|
||||
name: 'Delete External Reference',
|
||||
value: 'deleteExternal',
|
||||
description: 'Delete a time entry’s external reference',
|
||||
action: 'Delete a time entry’s external reference',
|
||||
},
|
||||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get data of a time entry',
|
||||
action: 'Get data of a time entry',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get data of all time entries',
|
||||
action: 'Get data of all time entries',
|
||||
},
|
||||
{
|
||||
name: 'Restart',
|
||||
value: 'restartTime',
|
||||
description: 'Restart a time entry',
|
||||
action: 'Restart a time entry',
|
||||
},
|
||||
{
|
||||
name: 'Stop',
|
||||
value: 'stopTime',
|
||||
description: 'Stop a time entry',
|
||||
action: 'Stop a time entry',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
value: 'update',
|
||||
description: 'Update a time entry',
|
||||
action: 'Update a time entry',
|
||||
},
|
||||
],
|
||||
default: 'getAll',
|
||||
|
||||
Reference in New Issue
Block a user