@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 newReplyHandlerForCommit method

Summary: This still has a callsite which I missed.

Auditors: btrahan

+7
+7
src/applications/audit/editor/PhabricatorAuditCommentEditor.php
··· 284 284 return array_keys($phids); 285 285 } 286 286 287 + public static function newReplyHandlerForCommit($commit) { 288 + $reply_handler = PhabricatorEnv::newObjectFromConfig( 289 + 'metamta.diffusion.reply-handler'); 290 + $reply_handler->setMailReceiver($commit); 291 + return $reply_handler; 292 + } 293 + 287 294 }