mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 19:52:44 +01:00
22 lines
413 B
PHP
22 lines
413 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorApplicationSystem extends PhabricatorApplication {
|
||
|
|
||
|
public function canUninstall() {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function isUnlisted() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function getRoutes() {
|
||
|
return array(
|
||
|
'/status/' => 'PhabricatorStatusController',
|
||
|
'/debug/' => 'PhabricatorDebugController',
|
||
|
'/robots.txt' => 'PhabricatorRobotsController',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|