Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15431133
D19648.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D19648.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D19648: Expose "isDraft" and "holdAsDraft" revision properties over Conduit
Attached
Detach File
Event Timeline
Log In to Comment