@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 35 lines 670 B view raw
1<?php 2 3final class PhabricatorAuditApplication extends PhabricatorApplication { 4 5 public function getBaseURI() { 6 return '/diffusion/commit/'; 7 } 8 9 public function getIcon() { 10 return 'fa-check-circle-o'; 11 } 12 13 public function getName() { 14 return pht('Audit'); 15 } 16 17 public function getShortDescription() { 18 return pht('Browse and Audit Commits'); 19 } 20 21 public function canUninstall() { 22 return true; 23 } 24 25 public function isPinnedByDefault(PhabricatorUser $viewer) { 26 return parent::isClassInstalledForViewer( 27 PhabricatorDiffusionApplication::class, 28 $viewer); 29 } 30 31 public function getApplicationOrder() { 32 return 0.130; 33 } 34 35}