Differential D20220 Diff 48333 src/applications/harbormaster/application/PhabricatorHarbormasterApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/harbormaster/application/PhabricatorHarbormasterApplication.php
| Show First 20 Lines • Show All 77 Lines • ▼ Show 20 Lines | return array( | ||||
| => 'HarbormasterBuildActionController', | => 'HarbormasterBuildActionController', | ||||
| ), | ), | ||||
| 'plan/' => array( | 'plan/' => array( | ||||
| $this->getQueryRoutePattern() => 'HarbormasterPlanListController', | $this->getQueryRoutePattern() => 'HarbormasterPlanListController', | ||||
| $this->getEditRoutePattern('edit/') | $this->getEditRoutePattern('edit/') | ||||
| => 'HarbormasterPlanEditController', | => 'HarbormasterPlanEditController', | ||||
| 'order/(?:(?P<id>\d+)/)?' => 'HarbormasterPlanOrderController', | 'order/(?:(?P<id>\d+)/)?' => 'HarbormasterPlanOrderController', | ||||
| 'disable/(?P<id>\d+)/' => 'HarbormasterPlanDisableController', | 'disable/(?P<id>\d+)/' => 'HarbormasterPlanDisableController', | ||||
| 'behavior/(?P<id>\d+)/(?P<behaviorKey>[^/]+)/' => | |||||
| 'HarbormasterPlanBehaviorController', | |||||
| 'run/(?P<id>\d+)/' => 'HarbormasterPlanRunController', | 'run/(?P<id>\d+)/' => 'HarbormasterPlanRunController', | ||||
| '(?P<id>\d+)/' => 'HarbormasterPlanViewController', | '(?P<id>\d+)/' => 'HarbormasterPlanViewController', | ||||
| ), | ), | ||||
| 'unit/' => array( | 'unit/' => array( | ||||
| '(?P<id>\d+)/' => 'HarbormasterUnitMessageListController', | '(?P<id>\d+)/' => 'HarbormasterUnitMessageListController', | ||||
| 'view/(?P<id>\d+)/' => 'HarbormasterUnitMessageViewController', | 'view/(?P<id>\d+)/' => 'HarbormasterUnitMessageViewController', | ||||
| ), | ), | ||||
| 'lint/' => array( | 'lint/' => array( | ||||
| Show All 35 Lines | |||||