Differential D19853 Diff 47434 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 46 Lines • ▼ Show 20 Lines | return array( | ||||
| '/T(?P<id>[1-9]\d*)' => 'ManiphestTaskDetailController', | '/T(?P<id>[1-9]\d*)' => 'ManiphestTaskDetailController', | ||||
| '/maniphest/' => array( | '/maniphest/' => array( | ||||
| $this->getQueryRoutePattern() => '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', | ||||
| 'subtask/(?P<id>[1-9]\d*)/' => 'ManiphestTaskSubtaskController', | |||||
| ), | ), | ||||
| 'subpriority/' => 'ManiphestSubpriorityController', | 'subpriority/' => 'ManiphestSubpriorityController', | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| public function supportsEmailIntegration() { | public function supportsEmailIntegration() { | ||||
| return true; | return true; | ||||
| ▲ Show 20 Lines • Show All 50 Lines • Show Last 20 Lines | |||||