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

Allow the Herald Rule Editor to apply generic "Edge" transactions

Summary: Fixes T13469. Currently, "Mute" applies a generic edge transaction but the editor doesn't whitelist them.

Test Plan: Muted a Herald rule.

Maniphest Tasks: T13469

Differential Revision: https://secure.phabricator.com/D20943

+6
+6
src/applications/herald/editor/HeraldRuleEditor.php
··· 30 30 return true; 31 31 } 32 32 33 + public function getTransactionTypes() { 34 + $types = parent::getTransactionTypes(); 35 + $types[] = PhabricatorTransactions::TYPE_EDGE; 36 + return $types; 37 + } 38 + 33 39 protected function getMailTo(PhabricatorLiskDAO $object) { 34 40 $phids = array(); 35 41