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

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

+6
+6
src/applications/differential/storage/DifferentialTransaction.php
··· 223 223 case self::TYPE_INLINE: 224 224 $tags[] = self::MAILTAG_COMMENT; 225 225 break; 226 + case DifferentialRevisionReviewersTransaction::TRANSACTIONTYPE: 227 + $tags[] = self::MAILTAG_REVIEWERS; 228 + break; 229 + case DifferentialRevisionCloseTransaction::TRANSACTIONTYPE: 230 + $tags[] = self::MAILTAG_CLSOED; 231 + break; 226 232 } 227 233 228 234 if (!$tags) {