feat(settings): add dynamic N8N webhook URL configuration for News, Sentiment and Analyzer services

This commit is contained in:
2026-08-17 16:10:31 +02:00
parent 75a2510b39
commit 3972507cb0
6 changed files with 68 additions and 24 deletions
+4
View File
@@ -16,4 +16,8 @@ public static class SettingKeys
public static readonly SettingKey<int> SentimentWindowDays = new("Sentiment.WindowDays", 14);
public static readonly SettingKey<double> DecayFactorPerDay = new("Sentiment.DecayFactorPerDay", 0.90);
public static readonly SettingKey<bool> EnableAutoSummarization = new("Feature.EnableAutoSummarization", true);
// --- N8N / Webhook-Konfiguration ---
public static readonly SettingKey<string> GermanWebhookUrl = new("N8N.GermanWebhookUrl", "https://n8n.kleidukos.me/webhook/sentiment/de");
public static readonly SettingKey<string> EnglishWebhookUrl = new("N8N.EnglishWebhookUrl", "https://n8n.kleidukos.me/webhook/sentiment/en");
}