refactor(web_server.py): make status lowercase

This commit is contained in:
2025-06-16 12:07:29 +02:00
parent 3709a42e64
commit cde27d37e3

View File

@@ -17,12 +17,12 @@ login_manager.init_app(app)
PC_DETAILS = {
"PC1": {
"id": "PC1",
"status": "Online",
"status": "online",
"last_seen": "2023-10-01 12:00:00",
},
"PC2": {
"id": "PC2",
"status": "Offline",
"status": "offline",
"last_seen": "2023-10-01 11:00:00",
},
}