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

Minor, restore Audit getMailThreading method

Summary: This also still has a callsite which I missed.

Auditors: btrahan

+10
+10
src/applications/audit/editor/PhabricatorAuditCommentEditor.php
··· 291 291 return $reply_handler; 292 292 } 293 293 294 + public static function getMailThreading( 295 + PhabricatorRepository $repository, 296 + PhabricatorRepositoryCommit $commit) { 297 + 298 + return array( 299 + 'diffusion-audit-'.$commit->getPHID(), 300 + 'Commit r'.$repository->getCallsign().$commit->getCommitIdentifier(), 301 + ); 302 + } 303 + 294 304 }