feat: Add file status tracking to CDokumente entity; implement beforeSave hook for hash calculation and status determination

This commit is contained in:
2026-03-03 08:17:51 +01:00
parent ba986a32fe
commit ec25089ab4
7 changed files with 103 additions and 6 deletions

View File

@@ -138,6 +138,24 @@
"default": "pending_sync",
"tooltip": true,
"isCustom": true
},
"fileStatus": {
"type": "enum",
"required": false,
"options": [
"new",
"changed",
"unchanged"
],
"style": {
"new": "info",
"changed": "warning",
"unchanged": "success"
},
"default": "new",
"readOnly": true,
"tooltip": true,
"isCustom": true
}
},
"links": {