mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Add transitional support for mail tags to Differential on EditEngine
Summary: Ref T11114. Although I plan to rewrite this system eventually (T10448) it's easy enough to punt for now. Test Plan: punt Reviewers: chad Reviewed By: chad Maniphest Tasks: T11114 Differential Revision: https://secure.phabricator.com/D17119
This commit is contained in:
parent
b373dcef74
commit
a4ba7daf90
1 changed files with 6 additions and 0 deletions
|
@ -223,6 +223,12 @@ final class DifferentialTransaction
|
||||||
case self::TYPE_INLINE:
|
case self::TYPE_INLINE:
|
||||||
$tags[] = self::MAILTAG_COMMENT;
|
$tags[] = self::MAILTAG_COMMENT;
|
||||||
break;
|
break;
|
||||||
|
case DifferentialRevisionReviewersTransaction::TRANSACTIONTYPE:
|
||||||
|
$tags[] = self::MAILTAG_REVIEWERS;
|
||||||
|
break;
|
||||||
|
case DifferentialRevisionCloseTransaction::TRANSACTIONTYPE:
|
||||||
|
$tags[] = self::MAILTAG_CLSOED;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$tags) {
|
if (!$tags) {
|
||||||
|
|
Loading…
Reference in a new issue