Select the types of activity you want to include in your feed.
@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
···11+UPDATE {$NAMESPACE}_herald.herald_action a
22+ JOIN {$NAMESPACE}_herald.herald_rule r
33+ ON a.ruleID = r.id
44+ SET a.action = 'diffusion.auditors.add'
55+ WHERE r.ruleType != 'personal'
66+ AND a.action = 'audit';
77+88+UPDATE {$NAMESPACE}_herald.herald_action a
99+ JOIN {$NAMESPACE}_herald.herald_rule r
1010+ ON a.ruleID = r.id
1111+ SET a.action = 'diffusion.auditors.self.add'
1212+ WHERE r.ruleType = 'personal'
1313+ AND a.action = 'audit';
···9090 );
9191 }
92929393- public function renderActionEffectDescription($type, $data) {
9393+ protected function renderActionEffectDescription($type, $data) {
9494 switch ($type) {
9595 case self::DO_EMPTY:
9696 return pht('Action lists no user to assign.');