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,21 +23,25 @@ export const boardMemberOperations: INodeProperties[] = [
|
||||
name: 'Add',
|
||||
value: 'add',
|
||||
description: 'Add member to board using member ID',
|
||||
action: 'Add a board member',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all members of a board',
|
||||
action: 'Get all board members',
|
||||
},
|
||||
{
|
||||
name: 'Invite',
|
||||
value: 'invite',
|
||||
description: 'Invite a new member to a board via email',
|
||||
action: 'Invite a board member',
|
||||
},
|
||||
{
|
||||
name: 'Remove',
|
||||
value: 'remove',
|
||||
description: 'Remove member from board using member ID',
|
||||
action: 'Remove a board member',
|
||||
},
|
||||
],
|
||||
default: 'add',
|
||||
|
||||
Reference in New Issue
Block a user