Differential D14659 Diff 35486 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 63 Lines • ▼ Show 20 Lines | return array( | ||||
| ), | ), | ||||
| 'transaction/' => array( | 'transaction/' => array( | ||||
| 'save/' => 'ManiphestTransactionSaveController', | 'save/' => 'ManiphestTransactionSaveController', | ||||
| 'preview/(?P<id>[1-9]\d*)/' | 'preview/(?P<id>[1-9]\d*)/' | ||||
| => 'ManiphestTransactionPreviewController', | => 'ManiphestTransactionPreviewController', | ||||
| ), | ), | ||||
| 'export/(?P<key>[^/]+)/' => 'ManiphestExportController', | 'export/(?P<key>[^/]+)/' => 'ManiphestExportController', | ||||
| 'subpriority/' => 'ManiphestSubpriorityController', | 'subpriority/' => 'ManiphestSubpriorityController', | ||||
| $this->getEditRoutePattern('editpro/') | |||||
| => 'ManiphestTaskEditProController', | |||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| public function loadStatus(PhabricatorUser $user) { | public function loadStatus(PhabricatorUser $user) { | ||||
| $status = array(); | $status = array(); | ||||
| if (!$user->isLoggedIn()) { | if (!$user->isLoggedIn()) { | ||||
| ▲ Show 20 Lines • Show All 96 Lines • Show Last 20 Lines | |||||