mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Add test plan to differential.revision.search
Summary: Ref T13151. Ref PHI622. Test Plan: Loaded a revision in the Conduit UI; observed presence of `testPlan` field. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T13151 Differential Revision: https://secure.phabricator.com/D19518
This commit is contained in:
parent
185c28f307
commit
67283c7a45
1 changed files with 5 additions and 0 deletions
|
@ -1148,6 +1148,10 @@ final class DifferentialRevision extends DifferentialDAO
|
|||
->setKey('summary')
|
||||
->setType('string')
|
||||
->setDescription(pht('Revision summary.')),
|
||||
id(new PhabricatorConduitSearchFieldSpecification())
|
||||
->setKey('testPlan')
|
||||
->setType('string')
|
||||
->setDescription(pht('Revision test plan.')),
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -1167,6 +1171,7 @@ final class DifferentialRevision extends DifferentialDAO
|
|||
'repositoryPHID' => $this->getRepositoryPHID(),
|
||||
'diffPHID' => $this->getActiveDiffPHID(),
|
||||
'summary' => $this->getSummary(),
|
||||
'testPlan' => $this->getTestPlan(),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue