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

at recaptime-dev/main 8 lines 349 B view raw
1/* PhabricatorObjectHasUnsubscriberEdgeType::EDGECONST = 23 */ 2/* PhabricatorProjectSilencedEdgeType::EDGECONST = 61 */ 3 4/* This is converting existing unsubscribes into disabled mail. */ 5 6INSERT IGNORE INTO {$NAMESPACE}_project.edge (src, type, dst, dateCreated) 7 SELECT src, 61, dst, dateCreated FROM {$NAMESPACE}_project.edge 8 WHERE type = 23;