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

Mark disabled users as "closed documents" in search

Test Plan:
$ ./reindex_all_users.php

Search for me in open documents.
Search for @epriestley in open documents.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

vrana bb61f03f c34dd215

+8
+8
src/applications/search/index/indexer/PhabricatorSearchUserIndexer.php
··· 33 33 // TODO: Index the blurbs from their profile or something? Probably not 34 34 // actually useful... 35 35 36 + if (!$user->getIsDisabled()) { 37 + $doc->addRelationship( 38 + PhabricatorSearchRelationship::RELATIONSHIP_OPEN, 39 + $user->getPHID(), 40 + PhabricatorPHIDConstants::PHID_TYPE_USER, 41 + time()); 42 + } 43 + 36 44 self::reindexAbstractDocument($doc); 37 45 } 38 46 }