Merge pull request #8 from Fimeg/3-dashboard-is-inconsistent

fix: dashboard severity field name mismatch
This commit is contained in:
Casey Tunturi
2025-10-31 13:30:25 -04:00
committed by GitHub

View File

@@ -30,8 +30,8 @@ type DashboardStats struct {
PendingUpdates int `json:"pending_updates"`
FailedUpdates int `json:"failed_updates"`
CriticalUpdates int `json:"critical_updates"`
ImportantUpdates int `json:"important_updates"`
ModerateUpdates int `json:"moderate_updates"`
ImportantUpdates int `json:"high_updates"`
ModerateUpdates int `json:"medium_updates"`
LowUpdates int `json:"low_updates"`
UpdatesByType map[string]int `json:"updates_by_type"`
}