add all field to admin panel

This commit is contained in:
2026-05-29 07:38:46 +07:00
parent 26f5760987
commit bed126bd85
9 changed files with 220 additions and 54 deletions
+26
View File
@@ -607,6 +607,20 @@
}
}
},
"evening_detectiveGraphDoor": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"name": {
"type": "string"
},
"show": {
"type": "boolean"
}
}
},
"evening_detectiveGraphNode": {
"type": "object",
"properties": {
@@ -619,11 +633,23 @@
"text": {
"type": "string"
},
"image": {
"type": "string"
},
"applications": {
"type": "array",
"items": {
"$ref": "#/definitions/evening_detectiveGraphApplication"
}
},
"hidden": {
"type": "boolean"
},
"doors": {
"type": "array",
"items": {
"$ref": "#/definitions/evening_detectiveGraphDoor"
}
}
}
},