Page MenuHomePhabricator

D19648.diff
No OneTemporary

D19648.diff

diff --git a/src/applications/differential/storage/DifferentialRevision.php b/src/applications/differential/storage/DifferentialRevision.php
--- a/src/applications/differential/storage/DifferentialRevision.php
+++ b/src/applications/differential/storage/DifferentialRevision.php
@@ -1152,6 +1152,20 @@
->setKey('testPlan')
->setType('string')
->setDescription(pht('Revision test plan.')),
+ id(new PhabricatorConduitSearchFieldSpecification())
+ ->setKey('isDraft')
+ ->setType('bool')
+ ->setDescription(
+ pht(
+ 'True if this revision is in any draft state, and thus not '.
+ 'notifying reviewers and subscribers about changes.')),
+ id(new PhabricatorConduitSearchFieldSpecification())
+ ->setKey('holdAsDraft')
+ ->setType('bool')
+ ->setDescription(
+ pht(
+ 'True if this revision is being held as a draft. It will not be '.
+ 'automatically submitted for review even if tests pass.')),
);
}
@@ -1172,6 +1186,8 @@
'diffPHID' => $this->getActiveDiffPHID(),
'summary' => $this->getSummary(),
'testPlan' => $this->getTestPlan(),
+ 'isDraft' => !$this->getShouldBroadcast(),
+ 'holdAsDraft' => (bool)$this->getHoldAsDraft(),
);
}

File Metadata

Mime Type
text/plain
Expires
Tue, Mar 25, 10:43 AM (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7722026
Default Alt Text
D19648.diff (1 KB)

Event Timeline