Document AI CV tools and follow-up reminder emails

This commit is contained in:
cesnimda
2026-03-23 21:48:02 +01:00
parent 5a31f86e4d
commit 19b0424ef3
4 changed files with 8 additions and 1 deletions
@@ -42,7 +42,7 @@ public sealed class FollowUpReminderHostedService : BackgroundService
var enabled = _cfg.GetValue("Email:FollowUpReminders:Enabled", false);
if (!enabled) return;
var baseUrl = (_cfg["App:BaseUrl"] ?? _cfg["Frontend:BaseUrl"] ?? string.Empty).Trim().TrimEnd('/');
var baseUrl = (_cfg["App:PublicBaseUrl"] ?? _cfg["App:BaseUrl"] ?? _cfg["Frontend:BaseUrl"] ?? string.Empty).Trim().TrimEnd('/');
if (string.IsNullOrWhiteSpace(baseUrl)) return;
using var scope = _services.CreateScope();