Differential D18959 Diff 45483 src/applications/maniphest/application/PhabricatorManiphestApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/maniphest/application/PhabricatorManiphestApplication.php
| Show First 20 Lines • Show All 44 Lines • ▼ Show 20 Lines | return array( | ||||
| new ManiphestRemarkupRule(), | new ManiphestRemarkupRule(), | ||||
| ); | ); | ||||
| } | } | ||||
| public function getRoutes() { | public function getRoutes() { | ||||
| return array( | return array( | ||||
| '/T(?P<id>[1-9]\d*)' => 'ManiphestTaskDetailController', | '/T(?P<id>[1-9]\d*)' => 'ManiphestTaskDetailController', | ||||
| '/maniphest/' => array( | '/maniphest/' => array( | ||||
| '(?:query/(?P<queryKey>[^/]+)/)?' => 'ManiphestTaskListController', | $this->getQueryRoutePattern() => 'ManiphestTaskListController', | ||||
| 'report/(?:(?P<view>\w+)/)?' => 'ManiphestReportController', | 'report/(?:(?P<view>\w+)/)?' => 'ManiphestReportController', | ||||
| $this->getBulkRoutePattern('bulk/') => 'ManiphestBulkEditController', | $this->getBulkRoutePattern('bulk/') => 'ManiphestBulkEditController', | ||||
| 'task/' => array( | 'task/' => array( | ||||
| $this->getEditRoutePattern('edit/') | $this->getEditRoutePattern('edit/') | ||||
| => 'ManiphestTaskEditController', | => 'ManiphestTaskEditController', | ||||
| ), | ), | ||||
| 'export/(?P<key>[^/]+)/' => 'ManiphestExportController', | 'export/(?P<key>[^/]+)/' => 'ManiphestExportController', | ||||
| 'subpriority/' => 'ManiphestSubpriorityController', | 'subpriority/' => 'ManiphestSubpriorityController', | ||||
| ▲ Show 20 Lines • Show All 61 Lines • Show Last 20 Lines | |||||