docs consolidation and others

This commit is contained in:
master
2026-01-06 19:02:21 +02:00
parent d7bdca6d97
commit 4789027317
849 changed files with 16551 additions and 66770 deletions

View File

@@ -448,7 +448,7 @@ public sealed class RiskBundleJobHandler : IRiskBundleJobHandler
return null;
}
private static RiskBundleAvailableProvider CreateProviderInfo(string providerId, bool mandatory)
private RiskBundleAvailableProvider CreateProviderInfo(string providerId, bool mandatory)
{
var (displayName, description) = providerId switch
{
@@ -467,7 +467,7 @@ public sealed class RiskBundleJobHandler : IRiskBundleJobHandler
Description = description,
Mandatory = mandatory,
Available = true, // Would check actual availability in production
LastSnapshotDate = DateOnly.FromDateTime(DateTime.UtcNow.AddDays(-1)),
LastSnapshotDate = DateOnly.FromDateTime(_timeProvider.GetUtcNow().AddDays(-1).DateTime),
DefaultSourcePath = $"/data/providers/{providerId}/current"
};
}