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
@@ -9,9 +9,9 @@ COMPONENT(Request& context)
return;
}
context.call["app"]["page_title"] = "Profile";
DTree user = users.current();
DValue user = users.current();
String roles = "";
user["roles"].each([&](DTree role, String key) {
user["roles"].each([&](DValue role, String key) {
if(roles != "")
roles += ", ";
roles += role.to_string();