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

Countdown mail support part

Summary: I still can't figure out why feed/mail aren't firing, but this needs fixed regardless. (honestly, I spent 2 hours on it last night. ghosts)

Test Plan: lint

Reviewers: eadler, epriestley

Reviewed By: eadler, epriestley

Subscribers: epriestley, Korvin

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

+5 -3
+5 -3
src/applications/countdown/editor/PhabricatorCountdownEditor.php
··· 188 188 } 189 189 190 190 protected function getMailTo(PhabricatorLiskDAO $object) { 191 - return array($object->getAuthorPHID()); 191 + return array( 192 + $object->getAuthorPHID(), 193 + $this->requireActor()->getPHID(), 194 + ); 192 195 } 193 - 194 196 protected function getMailSubjectPrefix() { 195 - return 'Countdown'; 197 + return '[Countdown]'; 196 198 } 197 199 198 200 protected function buildReplyHandler(PhabricatorLiskDAO $object) {