Page MenuHomePhabricator

D17603.diff
No OneTemporary

D17603.diff

diff --git a/src/applications/maniphest/storage/ManiphestTask.php b/src/applications/maniphest/storage/ManiphestTask.php
--- a/src/applications/maniphest/storage/ManiphestTask.php
+++ b/src/applications/maniphest/storage/ManiphestTask.php
@@ -474,6 +474,10 @@
->setType('string')
->setDescription(pht('The title of the task.')),
id(new PhabricatorConduitSearchFieldSpecification())
+ ->setKey('description')
+ ->setType('remarkup')
+ ->setDescription(pht('The task description.')),
+ id(new PhabricatorConduitSearchFieldSpecification())
->setKey('authorPHID')
->setType('phid')
->setDescription(pht('Original task author.')),
@@ -501,7 +505,6 @@
}
public function getFieldValuesForConduit() {
-
$status_value = $this->getStatus();
$status_info = array(
'value' => $status_value,
@@ -519,6 +522,9 @@
return array(
'name' => $this->getTitle(),
+ 'description' => array(
+ 'raw' => $this->getDescription(),
+ ),
'authorPHID' => $this->getAuthorPHID(),
'ownerPHID' => $this->getOwnerPHID(),
'status' => $status_info,

File Metadata

Mime Type
text/plain
Expires
Thu, May 9, 9:25 PM (3 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
6277923
Default Alt Text
D17603.diff (1 KB)

Event Timeline