refactor: rename DTree to DValue

This commit is contained in:
udo
2026-06-12 11:05:52 +00:00
parent 941f5aea08
commit 7066da3cde
157 changed files with 1203 additions and 1074 deletions
+3 -3
View File
@@ -3,7 +3,7 @@
RENDER(Request& context)
{
bool allow_mutation = test_demo_request_allowed(context);
DTree payload;
DValue payload;
if(context.get["compile"] != "")
{
@@ -19,11 +19,11 @@ RENDER(Request& context)
payload["current"] = unit_info();
DTree units;
DValue units;
units.set_array();
for(auto& unit_path : units_list())
{
DTree item;
DValue item;
item = unit_path;
units.push(item);
}