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

Link Phabricator tests

Test Plan: This diff.

Reviewers: epriestley

Reviewed By: epriestley

CC: aran, Korvin

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

vrana 99949bec e18fb440

+8
+8
src/infrastructure/testing/PhabricatorTestCase.php
··· 136 136 return new PhabricatorStorageFixtureScopeGuard($name); 137 137 } 138 138 139 + protected function getLink($method) { 140 + $phabricator_project = 'PHID-APRJ-3f1fc779edeab89b2171'; 141 + return 142 + 'https://secure.phabricator.com/diffusion/symbol/'.$method. 143 + '/?lang=php&projects='.$phabricator_project. 144 + '&jump=true&context='.get_class($this); 145 + } 146 + 139 147 }