1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-20 05:42:40 +01:00

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
This commit is contained in:
Chad Little 2015-07-27 07:19:52 -07:00
parent c8977d580e
commit 37893ed774

View file

@ -188,11 +188,13 @@ final class PhabricatorCountdownEditor
} }
protected function getMailTo(PhabricatorLiskDAO $object) { protected function getMailTo(PhabricatorLiskDAO $object) {
return array($object->getAuthorPHID()); return array(
$object->getAuthorPHID(),
$this->requireActor()->getPHID(),
);
} }
protected function getMailSubjectPrefix() { protected function getMailSubjectPrefix() {
return 'Countdown'; return '[Countdown]';
} }
protected function buildReplyHandler(PhabricatorLiskDAO $object) { protected function buildReplyHandler(PhabricatorLiskDAO $object) {