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

Carry the "silent" transaction flag through inverse edge edits

Summary:
See PHI751. Ref T13164. We added a "silent" flag for Editors somewhat recently (currently reachable only for bulk edits with `bin/bulk ...` command).

However, this flag doesn't carry through to the sub-editor when we make inverse edge edits. These are edits like "X is a parent of Y", which cause an implicit "Y is a child of X" edit to occur.

Pass the flag through.

Test Plan:
- Rigged the relationships controller to make silent edits.
- Changed the parents of a revision from the web UI. Saw no mail or feed stories.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T13164

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

+1
+1
src/applications/transactions/editor/PhabricatorApplicationTransactionEditor.php
··· 3599 3599 ->setContinueOnMissingFields(true) 3600 3600 ->setParentMessageID($this->getParentMessageID()) 3601 3601 ->setIsInverseEdgeEditor(true) 3602 + ->setIsSilent($this->getIsSilent()) 3602 3603 ->setActor($this->requireActor()) 3603 3604 ->setActingAsPHID($this->getActingAsPHID()) 3604 3605 ->setContentSource($this->getContentSource());