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

Minor, restore Audit getMailThreading method

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

Auditors: btrahan
This commit is contained in:
epriestley 2014-08-02 01:12:53 -07:00
parent 46b4fa85d0
commit bb022d2376

View file

@ -291,4 +291,14 @@ final class PhabricatorAuditCommentEditor extends PhabricatorEditor {
return $reply_handler;
}
public static function getMailThreading(
PhabricatorRepository $repository,
PhabricatorRepositoryCommit $commit) {
return array(
'diffusion-audit-'.$commit->getPHID(),
'Commit r'.$repository->getCallsign().$commit->getCommitIdentifier(),
);
}
}