Something went wrong. Try again.
@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
Something went wrong. Try again.
604 B · 26 lines
PHP
at commit 2f95330c
123456789101112131415161718192021222324252627<?php
final class DiffusionRepositoryIdentityEditor extends PhabricatorApplicationTransactionEditor {
public function getEditorObjectsDescription() { return pht('Repository Identity'); }
public function getCreateObjectTitle($author, $object) { return pht('%s created this identity.', $author); }
public function getCreateObjectTitleForFeed($author, $object) { return pht('%s created %s.', $author, $object); }
protected function supportsSearch() { return true; }
public function getEditorApplicationClass() { return 'PhabricatorDiffusionApplication'; }
}