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
+10 -1
View File
@@ -230,9 +230,18 @@ message GraphNode {
string code = 1;
string name = 2;
string text = 3;
repeated GraphApplication applications = 4;
string image = 4;
repeated GraphApplication applications = 5;
bool hidden = 7;
repeated GraphDoor doors = 8;
}
message GraphApplication {
string name = 1;
}
message GraphDoor {
string code = 1;
string name = 2;
bool show = 3;
}