@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 33 lines 570 B view raw
1<?php 2 3final class PhabricatorDoorkeeperApplication extends PhabricatorApplication { 4 5 public function canUninstall() { 6 return false; 7 } 8 9 public function isLaunchable() { 10 return false; 11 } 12 13 public function getName() { 14 return pht('Doorkeeper'); 15 } 16 17 public function getIcon() { 18 return 'fa-recycle'; 19 } 20 21 public function getShortDescription() { 22 return pht('Connect to Other Software'); 23 } 24 25 public function getRoutes() { 26 return array( 27 '/doorkeeper/' => array( 28 'tags/' => 'DoorkeeperTagsController', 29 ), 30 ); 31 } 32 33}