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

Increase Phriction subdocument limit from 50 to 250

Summary:
A few users have come into IRC asking about this: basically, we show "children + grandchildren" until you have more than 50, then we show only children. This creates a few issues:

- This view is surprisingly useful, and becomes less useful after it folds.
- The folding behavior and program motivation for folding isn't obvious.

In the long term, some finessier approach is probably better here (configuration, CMS stuff, etc), but for now just bump the limit up.

Test Plan: Viewed Phriction, saw child paegs.

Reviewers: chad, btrahan

Reviewed By: chad

CC: aran

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

+1 -1
+1 -1
src/applications/phriction/controller/PhrictionDocumentController.php
··· 319 319 $content_dao = new PhrictionContent(); 320 320 $conn = $document_dao->establishConnection('r'); 321 321 322 - $limit = 50; 322 + $limit = 250; 323 323 $d_child = PhabricatorSlug::getDepth($slug) + 1; 324 324 $d_grandchild = PhabricatorSlug::getDepth($slug) + 2; 325 325