Differential D18961 Diff 45485 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 51 Lines • ▼ Show 20 Lines | return array( | ||||
| '/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', | ||||
| ), | ), | ||||
| 'export/(?P<key>[^/]+)/' => 'ManiphestExportController', | |||||
| 'subpriority/' => 'ManiphestSubpriorityController', | 'subpriority/' => 'ManiphestSubpriorityController', | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| public function supportsEmailIntegration() { | public function supportsEmailIntegration() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 54 Lines • Show Last 20 Lines | |||||