diff --git a/src/applications/search/index/indexer/PhabricatorSearchUserIndexer.php b/src/applications/search/index/indexer/PhabricatorSearchUserIndexer.php index 7cacf31492..27e3f57383 100644 --- a/src/applications/search/index/indexer/PhabricatorSearchUserIndexer.php +++ b/src/applications/search/index/indexer/PhabricatorSearchUserIndexer.php @@ -33,6 +33,14 @@ final class PhabricatorSearchUserIndexer // TODO: Index the blurbs from their profile or something? Probably not // actually useful... + if (!$user->getIsDisabled()) { + $doc->addRelationship( + PhabricatorSearchRelationship::RELATIONSHIP_OPEN, + $user->getPHID(), + PhabricatorPHIDConstants::PHID_TYPE_USER, + time()); + } + self::reindexAbstractDocument($doc); } }