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

at recaptime-dev/main 25 lines 599 B view raw
1<?php 2 3final class PhabricatorEditEngineConfigurationEditor 4 extends PhabricatorApplicationTransactionEditor { 5 6 public function getEditorApplicationClass() { 7 return PhabricatorTransactionsApplication::class; 8 } 9 10 public function getCreateObjectTitle($author, $object) { 11 return pht('%s created this form.', $author); 12 } 13 14 public function getEditorObjectsDescription() { 15 return pht('Edit Configurations'); 16 } 17 18 public function getTransactionTypes() { 19 $types = parent::getTransactionTypes(); 20 $types[] = PhabricatorTransactions::TYPE_VIEW_POLICY; 21 22 return $types; 23 } 24 25}