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

Fix project creation feed story

Summary: Adds feed story copy to project create transactions.

Test Plan: Create a new project, visit manage page, feed, see correct text.

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

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

+8
+8
src/applications/project/editor/PhabricatorProjectTransactionEditor.php
··· 22 22 return pht('Projects'); 23 23 } 24 24 25 + public function getCreateObjectTitle($author, $object) { 26 + return pht('%s created this project.', $author); 27 + } 28 + 29 + public function getCreateObjectTitleForFeed($author, $object) { 30 + return pht('%s created %s.', $author, $object); 31 + } 32 + 25 33 public function getTransactionTypes() { 26 34 $types = parent::getTransactionTypes(); 27 35