@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add an explicit "uri" to the "harbormaster.buildable.search" results

Summary: Ref T13546. This makes some "arc" tasks a little easier, and will make them more correct if "arc" ever switches to using SSH.

Test Plan: Ran "harbormaster.buildable.search" from the web UI, saw URIs in the result set.

Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam

Maniphest Tasks: T13546

Differential Revision: https://secure.phabricator.com/D21346

+5
+5
src/applications/harbormaster/storage/HarbormasterBuildable.php
··· 366 366 ->setKey('isManual') 367 367 ->setType('bool') 368 368 ->setDescription(pht('True if this is a manual buildable.')), 369 + id(new PhabricatorConduitSearchFieldSpecification()) 370 + ->setKey('uri') 371 + ->setType('uri') 372 + ->setDescription(pht('View URI for the buildable.')), 369 373 ); 370 374 } 371 375 ··· 377 381 'value' => $this->getBuildableStatus(), 378 382 ), 379 383 'isManual' => (bool)$this->getIsManualBuildable(), 384 + 'uri' => PhabricatorEnv::getURI($this->getURI()), 380 385 ); 381 386 } 382 387