audit work, fixed StellaOps.sln warnings/errors, fixed tests, sprints work, new advisories

This commit is contained in:
master
2026-01-07 18:49:59 +02:00
parent 04ec098046
commit 608a7f85c0
866 changed files with 56323 additions and 6231 deletions

View File

@@ -4,6 +4,7 @@
// Task: T5 — Backend export service for audit packs
// -----------------------------------------------------------------------------
using System.Globalization;
using System.IO.Compression;
using System.Text.Json;
using StellaOps.AuditPack.Models;
@@ -132,7 +133,7 @@ public sealed class AuditPackExportService : IAuditPackExportService
{
var exportDoc = new Dictionary<string, object>
{
["exportedAt"] = _timeProvider.GetUtcNow().ToString("O"),
["exportedAt"] = _timeProvider.GetUtcNow().ToString("O", CultureInfo.InvariantCulture),
["scanId"] = request.ScanId,
["format"] = "json",
["version"] = "1.0"