Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2710290
D25038.1735332512.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
D25038.1735332512.diff
View Options
diff --git a/src/applications/project/storage/PhabricatorProjectColumn.php b/src/applications/project/storage/PhabricatorProjectColumn.php
--- a/src/applications/project/storage/PhabricatorProjectColumn.php
+++ b/src/applications/project/storage/PhabricatorProjectColumn.php
@@ -271,6 +271,19 @@
pht(
'For columns that proxy another object (like a subproject or '.
'milestone), the PHID of the object they proxy.')),
+ id(new PhabricatorConduitSearchFieldSpecification())
+ ->setKey('isHidden')
+ ->setType('bool')
+ ->setDescription(pht('True if this column is hidden.')),
+ id(new PhabricatorConduitSearchFieldSpecification())
+ ->setKey('isDefaultColumn')
+ ->setType('bool')
+ ->setDescription(pht('True if this is the default column.')),
+ id(new PhabricatorConduitSearchFieldSpecification())
+ ->setKey('sequence')
+ ->setType('int')
+ ->setDescription(
+ pht('The sequence in which this column appears on the workboard.')),
);
}
@@ -279,6 +292,9 @@
'name' => $this->getDisplayName(),
'proxyPHID' => $this->getProxyPHID(),
'project' => $this->getProject()->getRefForConduit(),
+ 'isHidden' => $this->isHidden(),
+ 'isDefaultColumn' => $this->isDefaultColumn(),
+ 'sequence' => (int)$this->getSequence(),
);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Dec 27, 20:48 (8 h, 20 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1035198
Default Alt Text
D25038.1735332512.diff (1 KB)
Attached To
Mode
D25038: Conduit column.search: add status, sequence and isDefault to API results
Attached
Detach File
Event Timeline
Log In to Comment