Add device vulnerability alerts to Dashboard

This commit is contained in:
tips-of-mine
2025-05-31 10:14:15 +02:00
committed by GitHub
parent 45deec6ac1
commit 0e7bbdb931
3 changed files with 98 additions and 3 deletions

View File

@ -42,4 +42,12 @@ export interface CVETicket {
tickets_id: number;
creation_type: 'AUTO' | 'MANUAL';
date_creation: string;
}
export interface DeviceAlert {
id: number;
name: string;
alerts: number;
criticalAlerts: number;
highAlerts: number;
}