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

Don't show Phriction draft edit events in feed

Summary: Depends on D19663. Ref T13077. When you edit a Phriction draft, don't publish a feed story. (The eventual "Publish" event gets a story.)

Test Plan: Made draft / non-draft / publish edits, only saw feed stories for non-draft and publish edits.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13077

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

+4
+4
src/applications/phriction/xaction/PhrictionDocumentDraftTransaction.php
··· 11 11 $this->getEditor()->setShouldPublishContent($object, false); 12 12 } 13 13 14 + public function shouldHideForFeed() { 15 + return true; 16 + } 17 + 14 18 public function validateTransactions($object, array $xactions) { 15 19 $errors = array(); 16 20