diff --git a/src/applications/harbormaster/storage/HarbormasterBuildable.php b/src/applications/harbormaster/storage/HarbormasterBuildable.php --- a/src/applications/harbormaster/storage/HarbormasterBuildable.php +++ b/src/applications/harbormaster/storage/HarbormasterBuildable.php @@ -366,6 +366,10 @@ ->setKey('isManual') ->setType('bool') ->setDescription(pht('True if this is a manual buildable.')), + id(new PhabricatorConduitSearchFieldSpecification()) + ->setKey('uri') + ->setType('uri') + ->setDescription(pht('View URI for the buildable.')), ); } @@ -377,6 +381,7 @@ 'value' => $this->getBuildableStatus(), ), 'isManual' => (bool)$this->getIsManualBuildable(), + 'uri' => PhabricatorEnv::getURI($this->getURI()), ); }