@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.

Dashboards - fix optionality of SearchEngines

Summary: Ref T7234. I didn't know about this spot in D11750.

Test Plan: ..the next diff really makes this work for the T7234 scenario.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T7234

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

+1
+1
src/applications/dashboard/customfield/PhabricatorDashboardPanelSearchApplicationCustomField.php
··· 16 16 $engines = id(new PhutilSymbolLoader()) 17 17 ->setAncestorClass('PhabricatorApplicationSearchEngine') 18 18 ->loadObjects(); 19 + $engines = mfilter($engines, 'canUseInPanelContext'); 19 20 $all_apps = id(new PhabricatorApplicationQuery()) 20 21 ->setViewer($this->getViewer()) 21 22 ->withUnlisted(false)