Phabricator: Extend CONDUIT API to support xaction transactions

Example of null transactions and their expected value:

* D9:transaction 44 - "abandon"
* D22:transaction 112 - "commit"
* D22:transaction 96 - "accept"
* D1123:transaction 22872 - "rethink"

Reviewers: sergey

https://developer.blender.org/D11568
This commit is contained in:
2021-06-10 14:37:08 +02:00
parent 1810f1dda9
commit 883046f69f

View File

@@ -295,7 +295,13 @@ EOREMARKUP
'new' => $xaction->getNewValue(),
);
break;
case DifferentialTransaction::TYPE_ACTION:
$type = DifferentialTransaction::TYPE_ACTION;
$fields = array(
'old' => $xaction->getOldValue(),
'new' => $xaction->getNewValue(),
);
break;
}
}