mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Return repositoryPHID from differential.query
Test Plan: Queried a revision that had a repository attached, got the PHID; queried one that didn't, got null. Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9928
This commit is contained in:
parent
7c71e1aefa
commit
1fc324066c
1 changed files with 2 additions and 1 deletions
|
@ -224,7 +224,8 @@ final class ConduitAPI_differential_query_Method
|
|||
'ccs' => array_values($revision->getCCPHIDs()),
|
||||
'hashes' => $revision->getHashes(),
|
||||
'auxiliary' => idx($field_data, $phid, array()),
|
||||
'arcanistProjectPHID' => $diff->getArcanistProjectPHID()
|
||||
'arcanistProjectPHID' => $diff->getArcanistProjectPHID(),
|
||||
'repositoryPHID' => $diff->getRepositoryPHID(),
|
||||
);
|
||||
|
||||
// TODO: This is a hacky way to put permissions on this field until we
|
||||
|
|
Loading…
Reference in a new issue