mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
refactor(nodes-base): Apply lint rule node-param-option-name-wrong-for-get-many (#4051)
* ⬆️ Upgrade linter * 📦 Update `package-lock.json` * 👕 Substitute rule * 👕 Apply lintfix for `node-param-option-name-wrong-for-get-many` * 👕 Restore lint exceptions
This commit is contained in:
@@ -19,7 +19,7 @@ export const boardColumnOperations: INodeProperties[] = [
|
||||
action: 'Create a board column',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all columns',
|
||||
action: 'Get all board columns',
|
||||
|
||||
@@ -31,7 +31,7 @@ export const boardOperations: INodeProperties[] = [
|
||||
action: 'Get a board',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all boards',
|
||||
action: 'Get all boards',
|
||||
|
||||
@@ -25,7 +25,7 @@ export const boardGroupOperations: INodeProperties[] = [
|
||||
action: 'Create a board group',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get list of groups in a board',
|
||||
action: 'Get all board groups',
|
||||
|
||||
@@ -33,8 +33,8 @@ export const boardItemOperations: INodeProperties[] = [
|
||||
{
|
||||
name: 'Create',
|
||||
value: 'create',
|
||||
description: "Create an item in a board's group",
|
||||
action: "Create an item in a board's group",
|
||||
description: 'Create an item in a board\'s group',
|
||||
action: 'Create an item in a board\'s group',
|
||||
},
|
||||
{
|
||||
name: 'Delete',
|
||||
@@ -48,18 +48,18 @@ export const boardItemOperations: INodeProperties[] = [
|
||||
description: 'Get an item',
|
||||
action: 'Get an item',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
value: 'getAll',
|
||||
description: 'Get all items',
|
||||
action: 'Get all items',
|
||||
},
|
||||
{
|
||||
name: 'Get By Column Value',
|
||||
value: 'getByColumnValue',
|
||||
description: 'Get items by column value',
|
||||
action: 'Get items item by column value',
|
||||
},
|
||||
{
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all items',
|
||||
action: 'Get all items',
|
||||
},
|
||||
{
|
||||
name: 'Move',
|
||||
value: 'move',
|
||||
|
||||
Reference in New Issue
Block a user