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

Only send Phame Post body on new creation

Summary: Right now we're attaching the body of every Phame post on each comment, at least restrict it to newly created objects only.

Test Plan: Write a new post, get full email, leave a comment, get less email.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+4 -1
+4 -1
src/applications/phame/editor/PhamePostEditor.php
··· 209 209 210 210 $body = parent::buildMailBody($object, $xactions); 211 211 212 - $body->addRemarkupSection(null, $object->getBody()); 212 + if ($this->getIsNewObject()) { 213 + $body->addRemarkupSection(null, $object->getBody()); 214 + } 215 + 213 216 $body->addLinkSection( 214 217 pht('POST DETAIL'), 215 218 PhabricatorEnv::getProductionURI($object->getViewURI()));