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

Phame - add edge transaction implementations.

Summary: Fixes T8252. See T6403 for longer term fix.

Test Plan: made a post with a task mention in it and it worked

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T8252

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

+3
+3
src/applications/phame/editor/PhamePostEditor.php
··· 64 64 return $object->setBody($xaction->getNewValue()); 65 65 case PhamePostTransaction::TYPE_COMMENTS_WIDGET: 66 66 return $object->setCommentsWidget($xaction->getNewValue()); 67 + case PhabricatorTransactions::TYPE_EDGE: 68 + return; 67 69 } 68 70 69 71 return parent::applyCustomInternalTransaction($object, $xaction); ··· 78 80 case PhamePostTransaction::TYPE_PHAME_TITLE: 79 81 case PhamePostTransaction::TYPE_BODY: 80 82 case PhamePostTransaction::TYPE_COMMENTS_WIDGET: 83 + case PhabricatorTransactions::TYPE_EDGE: 81 84 return; 82 85 } 83 86