Refactor code structure for improved readability and maintainability

This commit is contained in:
2026-03-11 09:21:52 +01:00
parent c2766ec66a
commit 76c38e8ad4
77 changed files with 167175 additions and 539 deletions

View File

@@ -34,6 +34,42 @@
"teams": {
"type": "linkMultiple",
"view": "views/fields/teams"
},
"xaiCollectionId": {
"type": "varchar",
"required": false,
"maxLength": 100,
"tooltip": true,
"isCustom": true,
"copyToClipboard": true
},
"syncStatus": {
"type": "enum",
"required": false,
"options": [
"pending_sync",
"clean",
"unclean",
"failed",
"no_sync"
],
"style": {
"pending_sync": "default",
"clean": "success",
"unclean": "warning",
"failed": "danger",
"no_sync": null
},
"default": "no_sync",
"tooltip": true,
"isCustom": true
},
"lastSync": {
"type": "datetime",
"required": false,
"readOnly": true,
"tooltip": true,
"isCustom": true
}
},
"links": {