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

Set specific timeline title for form creation

Summary:
The timeline for an EditEngine form says `created this object`. It should say `created this form`.

Closes T15880

Test Plan: Go to http://phorge.localhost/transactions/editengine/maniphest.task/ and create an EditEngine form, scroll down to its timeline.

Reviewers: O1 Blessed Committers, speck

Reviewed By: O1 Blessed Committers, speck

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15880

Differential Revision: https://we.phorge.it/D25726

+4
+4
src/applications/transactions/editor/PhabricatorEditEngineConfigurationEditor.php
··· 7 7 return PhabricatorTransactionsApplication::class; 8 8 } 9 9 10 + public function getCreateObjectTitle($author, $object) { 11 + return pht('%s created this form.', $author); 12 + } 13 + 10 14 public function getEditorObjectsDescription() { 11 15 return pht('Edit Configurations'); 12 16 }