Changeset View
Changeset View
Standalone View
Standalone View
src/applications/audit/application/PhabricatorAuditApplication.php
| Show All 29 Lines | return array( | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| public function getRoutes() { | public function getRoutes() { | ||||
| return array( | return array( | ||||
| '/audit/' => array( | '/audit/' => array( | ||||
| '(?:query/(?P<queryKey>[^/]+)/)?' => 'PhabricatorAuditListController', | '(?:query/(?P<queryKey>[^/]+)/)?' => 'PhabricatorAuditListController', | ||||
| 'addcomment/' => 'PhabricatorAuditAddCommentController', | |||||
| 'preview/(?P<id>[1-9]\d*)/' => 'PhabricatorAuditPreviewController', | |||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| public function getApplicationOrder() { | public function getApplicationOrder() { | ||||
| return 0.130; | return 0.130; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 54 Lines • Show Last 20 Lines | |||||