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

Fix a few Diviner method calls

Summary: I missed these in D13157.

Test Plan: Browsed around #diviner.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

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

-3
-2
src/applications/diviner/publisher/DivinerLivePublisher.php
··· 31 31 ->withNames(array($atom->getName())) 32 32 ->withContexts(array($atom->getContext())) 33 33 ->withIndexes(array($this->getAtomSimilarIndex($atom))) 34 - ->withIncludeUndocumentable(true) 35 - ->withIncludeGhosts(true) 36 34 ->executeOne(); 37 35 38 36 if ($symbol) {
-1
src/applications/diviner/query/DivinerAtomQuery.php
··· 240 240 if ($child_hashes) { 241 241 $children = id(new DivinerAtomQuery()) 242 242 ->setViewer($this->getViewer()) 243 - ->withIncludeUndocumentable(true) 244 243 ->withNodeHashes($child_hashes) 245 244 ->needAtoms($this->needAtoms) 246 245 ->execute();