Differential D10610 Diff 30841 src/applications/project/application/PhabricatorProjectApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/project/application/PhabricatorProjectApplication.php
| Show First 20 Lines • Show All 68 Lines • ▼ Show 20 Lines | return array( | ||||
| '(?:query/(?P<queryKey>[^/]+)/)?' | '(?:query/(?P<queryKey>[^/]+)/)?' | ||||
| => 'PhabricatorProjectBoardViewController', | => 'PhabricatorProjectBoardViewController', | ||||
| 'move/(?P<id>[1-9]\d*)/' => 'PhabricatorProjectMoveController', | 'move/(?P<id>[1-9]\d*)/' => 'PhabricatorProjectMoveController', | ||||
| 'board/(?P<projectID>[1-9]\d*)/' => array( | 'board/(?P<projectID>[1-9]\d*)/' => array( | ||||
| 'edit/(?:(?P<id>\d+)/)?' | 'edit/(?:(?P<id>\d+)/)?' | ||||
| => 'PhabricatorProjectColumnEditController', | => 'PhabricatorProjectColumnEditController', | ||||
| 'hide/(?:(?P<id>\d+)/)?' | 'hide/(?:(?P<id>\d+)/)?' | ||||
| => 'PhabricatorProjectColumnHideController', | => 'PhabricatorProjectColumnHideController', | ||||
| 'column/(?:(?P<id>\d+)/)?' | 'detail/(?:(?P<id>\d+)/)?' | ||||
| => 'PhabricatorProjectColumnDetailController', | => 'PhabricatorProjectColumnDetailController', | ||||
| 'import/' | 'import/' | ||||
| => 'PhabricatorProjectBoardImportController', | => 'PhabricatorProjectBoardImportController', | ||||
| 'reorder/' | 'reorder/' | ||||
| => 'PhabricatorProjectBoardReorderController', | => 'PhabricatorProjectBoardReorderController', | ||||
| 'column/(?:(?P<id>\d+)/)'. | |||||
| '(?P<filter>filter/)?'. | |||||
| '(?:query/(?P<queryKey>[^/]+)/)?' | |||||
| => 'PhabricatorProjectColumnContentController', | |||||
| ), | ), | ||||
| 'update/(?P<id>[1-9]\d*)/(?P<action>[^/]+)/' | 'update/(?P<id>[1-9]\d*)/(?P<action>[^/]+)/' | ||||
| => 'PhabricatorProjectUpdateController', | => 'PhabricatorProjectUpdateController', | ||||
| 'history/(?P<id>[1-9]\d*)/' => 'PhabricatorProjectHistoryController', | 'history/(?P<id>[1-9]\d*)/' => 'PhabricatorProjectHistoryController', | ||||
| '(?P<action>watch|unwatch)/(?P<id>[1-9]\d*)/' | '(?P<action>watch|unwatch)/(?P<id>[1-9]\d*)/' | ||||
| => 'PhabricatorProjectWatchController', | => 'PhabricatorProjectWatchController', | ||||
| ), | ), | ||||
| '/tag/' => array( | '/tag/' => array( | ||||
| ▲ Show 20 Lines • Show All 52 Lines • Show Last 20 Lines | |||||