Differential D7892 Diff 17872 src/applications/harbormaster/application/PhabricatorApplicationHarbormaster.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/harbormaster/application/PhabricatorApplicationHarbormaster.php
| Show First 20 Lines • Show All 49 Lines • ▼ Show 20 Lines | return array( | ||||
| => 'HarbormasterBuildableListController', | => 'HarbormasterBuildableListController', | ||||
| 'step/' => array( | 'step/' => array( | ||||
| 'add/(?:(?P<id>\d+)/)?' => 'HarbormasterStepAddController', | 'add/(?:(?P<id>\d+)/)?' => 'HarbormasterStepAddController', | ||||
| 'edit/(?:(?P<id>\d+)/)?' => 'HarbormasterStepEditController', | 'edit/(?:(?P<id>\d+)/)?' => 'HarbormasterStepEditController', | ||||
| 'delete/(?:(?P<id>\d+)/)?' => 'HarbormasterStepDeleteController', | 'delete/(?:(?P<id>\d+)/)?' => 'HarbormasterStepDeleteController', | ||||
| ), | ), | ||||
| 'build/' => array( | 'build/' => array( | ||||
| '(?:(?P<id>\d+)/)?' => 'HarbormasterBuildViewController', | '(?:(?P<id>\d+)/)?' => 'HarbormasterBuildViewController', | ||||
| 'cancel/(?:(?P<id>\d+)/)?' => 'HarbormasterBuildCancelController', | '(?P<action>stop|resume|restart)/(?:(?P<id>\d+)/)?' | ||||
| => 'HarbormasterBuildActionController', | |||||
| ), | ), | ||||
| 'plan/' => array( | 'plan/' => array( | ||||
| '(?:query/(?P<queryKey>[^/]+)/)?' | '(?:query/(?P<queryKey>[^/]+)/)?' | ||||
| => 'HarbormasterPlanListController', | => 'HarbormasterPlanListController', | ||||
| 'edit/(?:(?P<id>\d+)/)?' => 'HarbormasterPlanEditController', | 'edit/(?:(?P<id>\d+)/)?' => 'HarbormasterPlanEditController', | ||||
| 'order/(?:(?P<id>\d+)/)?' => 'HarbormasterPlanOrderController', | 'order/(?:(?P<id>\d+)/)?' => 'HarbormasterPlanOrderController', | ||||
| 'disable/(?P<id>\d+)/' => 'HarbormasterPlanDisableController', | 'disable/(?P<id>\d+)/' => 'HarbormasterPlanDisableController', | ||||
| 'run/(?P<id>\d+)/' => 'HarbormasterPlanRunController', | 'run/(?P<id>\d+)/' => 'HarbormasterPlanRunController', | ||||
| Show All 16 Lines | |||||