⚡ Set up action for operation options
This commit is contained in:
parent
4319962141
commit
dc1db201b6
3 changed files with 5 additions and 1 deletions
|
|
@ -115,6 +115,8 @@ module.exports = {
|
|||
'n8n-nodes-base/node-param-display-name-wrong-for-update-fields': 'error',
|
||||
'n8n-nodes-base/node-param-min-value-wrong-for-limit': 'error',
|
||||
'n8n-nodes-base/node-param-multi-options-type-unsorted-items': 'error',
|
||||
// 'n8n-nodes-base/node-param-operation-option-action-miscased': 'error', // TODO: Uncomment once #3610 merged to master
|
||||
// 'n8n-nodes-base/node-param-operation-option-without-action': 'error', // TODO: Uncomment once #3610 merged to master
|
||||
'n8n-nodes-base/node-param-operation-without-no-data-expression': 'error',
|
||||
'n8n-nodes-base/node-param-option-description-identical-to-name': 'error',
|
||||
'n8n-nodes-base/node-param-option-name-containing-star': 'error',
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ export const httpVerbOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'GET',
|
||||
value: 'get',
|
||||
// action: 'Perform a GET request', // TODO: Uncomment once #3610 merged to master
|
||||
routing: {
|
||||
request: {
|
||||
method: 'GET',
|
||||
|
|
@ -27,6 +28,7 @@ export const httpVerbOperations: INodeProperties[] = [
|
|||
{
|
||||
name: 'DELETE',
|
||||
value: 'delete',
|
||||
// action: 'Perform a DELETE request', // TODO: Uncomment once #3610 merged to master
|
||||
routing: {
|
||||
request: {
|
||||
method: 'DELETE',
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@
|
|||
"@types/express": "^4.17.6",
|
||||
"@types/request-promise-native": "~1.0.15",
|
||||
"@typescript-eslint/parser": "^5.29.0",
|
||||
"eslint-plugin-n8n-nodes-base": "~1.1.1",
|
||||
"eslint-plugin-n8n-nodes-base": "^1.2.0",
|
||||
"gulp": "^4.0.2",
|
||||
"n8n-core": "~0.122.1",
|
||||
"n8n-workflow": "~0.104.0",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue