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

Mmmm, Countdown Tokens

Summary: Allow Countdowns to reveive tokens

Test Plan: Give token, see token.

Reviewers: btrahan, epriestley

Reviewed By: epriestley

Subscribers: epriestley, Korvin

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

+9
+1
src/__phutil_library_map__.php
··· 5610 5610 'PhabricatorFlaggableInterface', 5611 5611 'PhabricatorSubscribableInterface', 5612 5612 'PhabricatorApplicationTransactionInterface', 5613 + 'PhabricatorTokenReceiverInterface', 5613 5614 'PhabricatorSpacesInterface', 5614 5615 'PhabricatorProjectInterface', 5615 5616 ),
+8
src/applications/countdown/storage/PhabricatorCountdown.php
··· 6 6 PhabricatorFlaggableInterface, 7 7 PhabricatorSubscribableInterface, 8 8 PhabricatorApplicationTransactionInterface, 9 + PhabricatorTokenReceiverInterface, 9 10 PhabricatorSpacesInterface, 10 11 PhabricatorProjectInterface { 11 12 ··· 87 88 AphrontRequest $request) { 88 89 89 90 return $timeline; 91 + } 92 + 93 + /* -( PhabricatorTokenReceiverInterface )---------------------------------- */ 94 + 95 + 96 + public function getUsersToNotifyOfTokenGiven() { 97 + return array($this->getAuthorPHID()); 90 98 } 91 99 92 100