diff options
| author | Roy Ben Shabat <roy.mail.net@gmail.com> | 2025-09-12 12:15:21 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <roy.mail.net@gmail.com> | 2025-09-12 12:15:21 +0300 |
| commit | ae42b51d0488b8d329c3379e6c345e4fe7421cf9 (patch) | |
| tree | 7cd1e05976acf1137333d0aec7e9b6dfb3032a39 /Software/Visual_Studio_22/Tango.Portal.Chat.Web/Services | |
| parent | 420ef1c290c4712ebfa2708267ec8ac1ffde6edc (diff) | |
| download | Tango-ae42b51d0488b8d329c3379e6c345e4fe7421cf9.tar.gz Tango-ae42b51d0488b8d329c3379e6c345e4fe7421cf9.zip | |
Some qork on AI Alerts.
Diffstat (limited to 'Software/Visual_Studio_22/Tango.Portal.Chat.Web/Services')
| -rw-r--r-- | Software/Visual_Studio_22/Tango.Portal.Chat.Web/Services/N8NService.cs | 4 |
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); |
