@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
at upstream/main 26 lines 609 B view raw
1<?php 2 3final class DiffusionRepositoryIdentityEditor 4 extends PhabricatorApplicationTransactionEditor { 5 6 public function getEditorObjectsDescription() { 7 return pht('Repository Identity'); 8 } 9 10 public function getCreateObjectTitle($author, $object) { 11 return pht('%s created this identity.', $author); 12 } 13 14 public function getCreateObjectTitleForFeed($author, $object) { 15 return pht('%s created %s.', $author, $object); 16 } 17 18 protected function supportsSearch() { 19 return true; 20 } 21 22 public function getEditorApplicationClass() { 23 return PhabricatorDiffusionApplication::class; 24 } 25 26}