mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 21:32:43 +01:00
Don't put the entire corpus into project edit feed stories
Summary: Fixes T8723. We override timeline titles for these fields to shorten them, but the parent class shows full values for feed edits, which can lead to screen-sized notifications. Test Plan: Edited a project, saw a reasonably-sized notification for it. Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T8723 Differential Revision: https://secure.phabricator.com/D13485
This commit is contained in:
parent
6b7183a762
commit
12c6e63d5b
1 changed files with 11 additions and 0 deletions
|
@ -56,6 +56,17 @@ final class PhabricatorStandardCustomFieldRemarkup
|
|||
$this->getFieldName());
|
||||
}
|
||||
|
||||
public function getApplicationTransactionTitleForFeed(
|
||||
PhabricatorApplicationTransaction $xaction) {
|
||||
$author_phid = $xaction->getAuthorPHID();
|
||||
$object_phid = $xaction->getObjectPHID();
|
||||
return pht(
|
||||
'%s edited %s on %s.',
|
||||
$xaction->renderHandleLink($author_phid),
|
||||
$this->getFieldName(),
|
||||
$xaction->renderHandleLink($object_phid));
|
||||
}
|
||||
|
||||
public function getApplicationTransactionHasChangeDetails(
|
||||
PhabricatorApplicationTransaction $xaction) {
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue