@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<?php
2
3final class PhabricatorHelpApplication extends PhabricatorApplication {
4
5 public function getName() {
6 return pht('Help');
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 '/help/' => array(
20 'keyboardshortcut/' => 'PhabricatorHelpKeyboardShortcutController',
21 'documentation/(?P<application>\w+)/'
22 => 'PhabricatorHelpDocumentationController',
23 ),
24 );
25 }
26
27}