summaryrefslogtreecommitdiff
path: root/DomainDig/BatchSweepSummaryView.swift
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-04-22 11:28:28 -0500
committerChristian Cleberg <[email protected]>2026-04-22 11:28:28 -0500
commitceac99c05f180d9008b75c9329822466ff60255b (patch)
tree073ea7cc959613479391020dc849c0705d98c0f5 /DomainDig/BatchSweepSummaryView.swift
parent9384a668bf36f23f71e25d05b490d1040d308845 (diff)
downloaddomain-dig-ceac99c05f180d9008b75c9329822466ff60255b.tar.gz
domain-dig-ceac99c05f180d9008b75c9329822466ff60255b.tar.bz2
domain-dig-ceac99c05f180d9008b75c9329822466ff60255b.zip
feat(v2.9.0): add risk scoring and deterministic insight engine
* introduce domain risk assessment with transparent factors * add insight engine for actionable observations * implement cross-domain insights for workflows * improve DNS, subdomain, email, and TLS interpretation * classify change impact severity * include insights and risk in export
Diffstat (limited to 'DomainDig/BatchSweepSummaryView.swift')
-rw-r--r--DomainDig/BatchSweepSummaryView.swift7
1 files changed, 1 insertions, 6 deletions
diff --git a/DomainDig/BatchSweepSummaryView.swift b/DomainDig/BatchSweepSummaryView.swift
index 61b3e37..43ffa74 100644
--- a/DomainDig/BatchSweepSummaryView.swift
+++ b/DomainDig/BatchSweepSummaryView.swift
@@ -11,12 +11,7 @@ struct BatchSweepSummaryView: View {
return summary.results
}
- return summary.results.filter {
- $0.quickStatus == "Changed" ||
- $0.quickStatus == "High" ||
- $0.certificateWarningLevel != .none ||
- $0.status == .failed
- }
+ return summary.results.filter(\.hasMeaningfulChange)
}
var body: some View {