added help url to web request node

This commit is contained in:
John Andrews
2022-06-29 07:21:20 +12:00
parent 5682768b9c
commit b1b1f09d1b
2 changed files with 2 additions and 1 deletions

View File

@@ -267,7 +267,7 @@
"Method": "Method",
"Method-Help": "The web method to use when sending this request",
"ContentType": "Content Type",
"ContentType-Help": "The Content-Type of the message to send.",
"ContentType-Help": "The Content-Type of the message to send",
"Headers": "Headers",
"Headers-Help": "Optional headers to send with the request",
"HeadersKey": "Key",

View File

@@ -12,6 +12,7 @@ public class WebRequest : Node
public override FlowElementType Type => FlowElementType.Communication;
public override bool FailureNode => true;
public override string Icon => "fas fa-globe";
public override string HelpUrl => "https://docs.fileflows.com/plugins/basic-nodes/web-request";
[TextVariable(1)]
public string Url { get; set; }