Changeset View
Changeset View
Standalone View
Standalone View
src/applications/config/application/PhabricatorConfigApplication.php
| Show First 20 Lines • Show All 49 Lines • ▼ Show 20 Lines | return array( | ||||
| => 'PhabricatorConfigDatabaseStatusController', | => 'PhabricatorConfigDatabaseStatusController', | ||||
| 'dbissue/' => 'PhabricatorConfigDatabaseIssueController', | 'dbissue/' => 'PhabricatorConfigDatabaseIssueController', | ||||
| '(?P<verb>ignore|unignore)/(?P<key>[^/]+)/' | '(?P<verb>ignore|unignore)/(?P<key>[^/]+)/' | ||||
| => 'PhabricatorConfigIgnoreController', | => 'PhabricatorConfigIgnoreController', | ||||
| 'issue/' => array( | 'issue/' => array( | ||||
| '' => 'PhabricatorConfigIssueListController', | '' => 'PhabricatorConfigIssueListController', | ||||
| '(?P<key>[^/]+)/' => 'PhabricatorConfigIssueViewController', | '(?P<key>[^/]+)/' => 'PhabricatorConfigIssueViewController', | ||||
| ), | ), | ||||
| 'cache/' => 'PhabricatorConfigCacheController', | 'cache/' => array( | ||||
| '' => 'PhabricatorConfigCacheController', | |||||
| 'purge/' => 'PhabricatorConfigPurgeCacheController', | |||||
| ), | |||||
| 'module/' => array( | 'module/' => array( | ||||
| '(?P<module>[^/]+)/' => 'PhabricatorConfigModuleController', | '(?P<module>[^/]+)/' => 'PhabricatorConfigModuleController', | ||||
| ), | ), | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| } | } | ||||