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

Minor fixes to maniphest feed/notification

Summary:
Added `renderNotificationView()` abstract function to `PhabricatorFeedStory` base class.
Fixed duplicate line in `PhabricatorFeedStoryManiphest` class.
Fixed spacing/formatting in `ManiphestTransactionEditor`.

Test Plan: No functional changes

Reviewers: epriestley, btrahan

Reviewed By: epriestley

CC: allenjohnashton, ddfisher, aran, Korvin

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

authored by

Keebuhm Park and committed by
epriestley
284d7b6a c67f4573

+2 -4
+1
src/applications/feed/story/PhabricatorFeedStory.php
··· 28 28 } 29 29 30 30 abstract public function renderView(); 31 + abstract public function renderNotificationView(); 31 32 32 33 public function getRequiredHandlePHIDs() { 33 34 return array();
-1
src/applications/feed/story/PhabricatorFeedStoryManiphest.php
··· 70 70 71 71 $view = new PhabricatorNotificationStoryView(); 72 72 73 - $view->setEpoch($data->getEpoch()); 74 73 $view->setTitle($this->getLineForData($data)); 75 74 $view->setEpoch($data->getEpoch()); 76 75 $view->setViewed($this->getHasViewed());
+1 -3
src/applications/maniphest/editor/ManiphestTransactionEditor.php
··· 369 369 array( 370 370 $author_phid, 371 371 $owner_phid, 372 - $actor_phid 373 - ) 374 - ), 372 + $actor_phid)), 375 373 $task->getCCPHIDs())) 376 374 ->publish(); 377 375 }