diff --git a/resources/celerity/map.php b/resources/celerity/map.php --- a/resources/celerity/map.php +++ b/resources/celerity/map.php @@ -276,8 +276,24 @@ 'rsrc/externals/javelin/lib/control/typeahead/source/TypeaheadPreloadedSource.js' => '5a79f6c3', 'rsrc/externals/javelin/lib/control/typeahead/source/TypeaheadSource.js' => '8badee71', 'rsrc/externals/javelin/lib/control/typeahead/source/TypeaheadStaticSource.js' => '80bff3af', + 'rsrc/favicons/apple-touch-icon-114x114.png' => 'c37253cd', + 'rsrc/favicons/apple-touch-icon-144x144.png' => '72e30931', + 'rsrc/favicons/apple-touch-icon-57x57.png' => '92b9c86e', + 'rsrc/favicons/apple-touch-icon-60x60.png' => '00130357', + 'rsrc/favicons/apple-touch-icon-72x72.png' => '7926dcd9', + 'rsrc/favicons/favicon-128.png' => 'b8648d01', 'rsrc/favicons/favicon-16x16.png' => '4c51a03a', + 'rsrc/favicons/favicon-196x196.png' => '56943cd4', + 'rsrc/favicons/favicon-32x32.png' => '354f7ac8', + 'rsrc/favicons/favicon-96x96.png' => '3fc1fdab', + 'rsrc/favicons/favicon-mention.ico' => '82ea2855', + 'rsrc/favicons/favicon-message.ico' => '42acb26e', + 'rsrc/favicons/favicon.ico' => '75eccb19', 'rsrc/favicons/mask-icon.svg' => 'db699fe1', + 'rsrc/favicons/mstile-144x144.png' => '22092812', + 'rsrc/favicons/mstile-150x150.png' => '058c6481', + 'rsrc/favicons/mstile-310x150.png' => '43ddc400', + 'rsrc/favicons/mstile-310x310.png' => 'a8730647', 'rsrc/image/BFCFDA.png' => '74b5c88b', 'rsrc/image/actions/edit.png' => 'fd987dff', 'rsrc/image/avatar.png' => '0d17c6c4', 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('status') + ->setType('string') + ->setDescription(pht('Active or hidden status of the column.')), + id(new PhabricatorConduitSearchFieldSpecification()) + ->setKey('isDefaultColumn') + ->setType('bool') + ->setDescription(pht('Whether 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(), + 'status' => $this->getStatus(), + 'isDefaultColumn' => $this->isDefaultColumn(), + 'sequence' => $this->getSequence(), ); }