feat: CheckMK host link in inventory, system logs hidden by default in logbook

This commit is contained in:
Brückner
2026-06-05 09:16:08 +02:00
parent 20308b53d6
commit ea9e6c1d46
6 changed files with 53 additions and 6 deletions

View File

@ -16,6 +16,7 @@ export interface Device {
type: DeviceType;
status: 'online' | 'offline' | 'unknown';
emergencySheet: string; // Markdown text
cmkHostname?: string;
lastCheckedAt?: string;
}