added :changed request body modifier

This commit is contained in:
Gani Georgiev
2025-11-17 13:58:43 +02:00
parent 2525f29c1c
commit 6e739fd33d
37 changed files with 170 additions and 67 deletions
+2 -1
View File
@@ -1947,13 +1947,14 @@ export default class CommonHelper {
for (const key of keys) {
result.push(key);
// add ":isset" modifier to non-base keys
// add ":isset"/":changed" modifier to non-base keys
const parts = key.split(".");
if (
parts.length === 3 &&
// doesn't contain another modifier
parts[2].indexOf(":") === -1
) {
result.push(key + ":changed");
result.push(key + ":isset");
}
}