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

Remove email prefixes from doorkeeper titles

Summary: Fixes T10176. The prefix is not useful in the JIRA context, and doubtfully useful in Asana.

Test Plan: Load, make comment on revision, see link in JIRA is pretty.

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin

Maniphest Tasks: T10176

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

authored by

Aviv Eyal and committed by
avivey
8f0d9c32 fe5cd4ca

+1 -6
+1 -6
src/applications/differential/doorkeeper/DifferentialDoorkeeperRevisionFeedStoryPublisher.php
··· 57 57 } 58 58 59 59 public function getObjectTitle($object) { 60 - $prefix = $this->getTitlePrefix($object); 61 - 62 - $lines = new PhutilNumber($object->getLineCount()); 63 - $lines = pht('[Request, %d lines]', $lines); 64 - 65 60 $id = $object->getID(); 66 61 67 62 $title = $object->getTitle(); 68 63 69 - return ltrim("{$prefix} {$lines} D{$id}: {$title}"); 64 + return "D{$id}: {$title}"; 70 65 } 71 66 72 67 public function getObjectURI($object) {