aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Services/N8NService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio_22/Tango.Portal.Chat.Web/Services/N8NService.cs')
-rw-r--r--Software/Visual_Studio_22/Tango.Portal.Chat.Web/Services/N8NService.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Services/N8NService.cs b/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Services/N8NService.cs
index c0100d868..6205e6327 100644
--- a/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Services/N8NService.cs
+++ b/Software/Visual_Studio_22/Tango.Portal.Chat.Web/Services/N8NService.cs
@@ -22,7 +22,7 @@ namespace Tango.Portal.Chat.Web.Services
_httpClient.DefaultRequestHeaders.Authorization = new System.Net.Http.Headers.AuthenticationHeaderValue("Basic", credentials);
}
- public async Task<bool> PostAlertDataAsync(string name, string type, string chartType, string chartTitle, string chartInstructions, object[] rows, CancellationToken cancellationToken = default)
+ public async Task<bool> PostAlertDataAsync(string name, string type, string chartType, string chartTitle, string instructions, object[] rows, CancellationToken cancellationToken = default)
{
try
{
@@ -33,7 +33,7 @@ namespace Tango.Portal.Chat.Web.Services
Rows = rows,
ChartType = chartType,
ChartTitle = chartTitle,
- ChartInstructions = chartInstructions
+ Instructions = instructions
};
var json = JsonSerializer.Serialize(payload);