mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 03:50:54 +01:00
Include the unit status in the getdiff conduit method
Summary: We need to query the unit status in order to determine if there are postponed unit tests to update after running "arc unit" Test Plan: 1) set my conduit uri to a server running the new code 2) ensured unitStatus existed when retrieving a diff Reviewers: epriestley Reviewed By: epriestley CC: dpepper, aran, epriestley Differential Revision: 918
This commit is contained in:
parent
a1d1c69506
commit
40b8e352ad
1 changed files with 2 additions and 0 deletions
|
@ -82,6 +82,8 @@ class ConduitAPI_differential_getdiff_Method extends ConduitAPIMethod {
|
|||
'revisionID' => $diff->getRevisionID(),
|
||||
'sourceControlBaseRevision' => $diff->getSourceControlBaseRevision(),
|
||||
'sourceControlPath' => $diff->getSourceControlPath(),
|
||||
'unitStatus' => $diff->getUnitStatus(),
|
||||
'lintStatus' => $diff->getLintStatus(),
|
||||
'changes' => array(),
|
||||
'properties' => array(),
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue