mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Fixed localcommits include on getDiffDict
Summary: Ref T10808 Test Plan: Call `differential.querydiffs` method and expect 'local:commits' property be added to the result. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: Korvin Maniphest Tasks: T10808 Differential Revision: https://secure.phabricator.com/D15710
This commit is contained in:
parent
899856a1d4
commit
f05c3e41b9
1 changed files with 1 additions and 2 deletions
|
@ -249,7 +249,6 @@ final class DifferentialDiff
|
|||
'unitStatus' => $this->getUnitStatus(),
|
||||
'lintStatus' => $this->getLintStatus(),
|
||||
'changes' => array(),
|
||||
'properties' => array(),
|
||||
);
|
||||
|
||||
$dict['changes'] = $this->buildChangesList();
|
||||
|
@ -258,7 +257,7 @@ final class DifferentialDiff
|
|||
}
|
||||
|
||||
public function getDiffAuthorshipDict() {
|
||||
$dict = array();
|
||||
$dict = array('properties' => array());
|
||||
|
||||
$properties = id(new DifferentialDiffProperty())->loadAllWhere(
|
||||
'diffID = %d',
|
||||
|
|
Loading…
Reference in a new issue