1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-20 12:30:56 +01:00

Minor, restore Audit newReplyHandlerForCommit method

Summary: This still has a callsite which I missed.

Auditors: btrahan
This commit is contained in:
epriestley 2014-08-02 01:12:53 -07:00
parent 955ec1bb9b
commit 950eeef4c0

View file

@ -284,4 +284,11 @@ final class PhabricatorAuditCommentEditor extends PhabricatorEditor {
return array_keys($phids); return array_keys($phids);
} }
public static function newReplyHandlerForCommit($commit) {
$reply_handler = PhabricatorEnv::newObjectFromConfig(
'metamta.diffusion.reply-handler');
$reply_handler->setMailReceiver($commit);
return $reply_handler;
}
} }