@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 ActionName to "Created" for PhabricatorTransactions::TYPE_CREATE

Summary:
Explicitly set "Created" as ActionName (to be used as a mail subject line vary prefix) when the transaction type is `PhabricatorTransactions::TYPE_CREATE` to avoid falling back to a generic "Updated" prefix.

Closes T15865

Test Plan: Either create a new task and check the mail subject line prefix (if you have a mail setup in your Phorge instance), or use the debug patch in P45 and check the order of action strengths.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Maniphest Tasks: T15865

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

+2
+2
src/applications/transactions/storage/PhabricatorApplicationTransaction.php
··· 1608 1608 return pht('Changed Policy'); 1609 1609 case PhabricatorTransactions::TYPE_SUBSCRIBERS: 1610 1610 return pht('Changed Subscribers'); 1611 + case PhabricatorTransactions::TYPE_CREATE: 1612 + return pht('Created'); 1611 1613 default: 1612 1614 return pht('Updated'); 1613 1615 }