Gaps fill up, fixes, ui restructuring

This commit is contained in:
master
2026-02-19 22:10:54 +02:00
parent b5829dce5c
commit 04cacdca8a
331 changed files with 42859 additions and 2174 deletions

View File

@@ -76,6 +76,9 @@ internal sealed class FakeAuditPackRepository : IAuditPackRepository
public Task<object?> GetProofChainAsync(string scanId, CancellationToken ct)
=> Task.FromResult<object?>(new { proof = "chain", scanId });
public Task<TriageSuppressExportBundle?> GetTriageSuppressEvidenceAsync(string scanId, CancellationToken ct)
=> Task.FromResult<TriageSuppressExportBundle?>(null);
}
internal sealed class FixedTimeProvider(DateTimeOffset now) : TimeProvider