@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 455 B view raw
1<?php 2 3final class PhabricatorConsoleApplication extends PhabricatorApplication { 4 5 public function getName() { 6 return pht('Console'); 7 } 8 9 public function canUninstall() { 10 return false; 11 } 12 13 public function isUnlisted() { 14 return true; 15 } 16 17 public function getRoutes() { 18 return array( 19 '/~/' => array( 20 '' => 'DarkConsoleController', 21 'data/(?P<key>[^/]+)/' => 'DarkConsoleDataController', 22 ), 23 ); 24 } 25 26}