Add action to HttpVerbDescription

This commit is contained in:
Iván Ovejero 2022-07-06 10:30:58 +02:00
commit 4998bfd3c7
2 changed files with 4 additions and 2 deletions

View file

@ -17,6 +17,7 @@ export const httpVerbOperations: INodeProperties[] = [
{
name: 'GET',
value: 'get',
action: 'Perform a GET request',
routing: {
request: {
method: 'GET',
@ -27,6 +28,7 @@ export const httpVerbOperations: INodeProperties[] = [
{
name: 'DELETE',
value: 'delete',
action: 'Perform a DELETE request',
routing: {
request: {
method: 'DELETE',