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

Modernize Differential SearchEngine just enough to get NUX

Summary: Ref T10032. This is sufficent to hit NUX without doing anything bad.

Test Plan:
- Visited NUX.
- Browsed normally.

{F1043191}

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10032

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

+7
+7
src/applications/differential/query/DifferentialRevisionSearchEngine.php
··· 11 11 return 'PhabricatorDifferentialApplication'; 12 12 } 13 13 14 + public function newQuery() { 15 + return id(new DifferentialRevisionQuery()) 16 + ->needFlags(true) 17 + ->needDrafts(true) 18 + ->needRelationships(true); 19 + } 20 + 14 21 public function getPageSize(PhabricatorSavedQuery $saved) { 15 22 if ($saved->getQueryKey() == 'active') { 16 23 return 0xFFFF;