Changeset View
Changeset View
Standalone View
Standalone View
src/applications/nuance/application/PhabricatorNuanceApplication.php
| Show First 20 Lines • Show All 46 Lines • ▼ Show 20 Lines | return array( | ||||
| $this->getEditRoutePattern('edit/') => 'NuanceSourceEditController', | $this->getEditRoutePattern('edit/') => 'NuanceSourceEditController', | ||||
| 'view/(?P<id>[1-9]\d*)/' => 'NuanceSourceViewController', | 'view/(?P<id>[1-9]\d*)/' => 'NuanceSourceViewController', | ||||
| ), | ), | ||||
| 'queue/' => array( | 'queue/' => array( | ||||
| $this->getQueryRoutePattern() => 'NuanceQueueListController', | $this->getQueryRoutePattern() => 'NuanceQueueListController', | ||||
| $this->getEditRoutePattern('edit/') => 'NuanceQueueEditController', | $this->getEditRoutePattern('edit/') => 'NuanceQueueEditController', | ||||
| 'view/(?P<id>[1-9]\d*)/' => 'NuanceQueueViewController', | 'view/(?P<id>[1-9]\d*)/' => 'NuanceQueueViewController', | ||||
| 'work/(?P<id>[1-9]\d*)/' => 'NuanceQueueWorkController', | 'work/(?P<id>[1-9]\d*)/' => 'NuanceQueueWorkController', | ||||
| 'action/(?P<queueID>[1-9]\d*)/(?P<action>[^/]+)/(?P<id>[1-9]\d*)/' | |||||
| => 'NuanceItemActionController', | |||||
| ), | ), | ||||
| ), | ), | ||||
| '/action/' => array( | '/action/' => array( | ||||
| '(?P<id>[1-9]\d*)/(?P<path>.*)' => 'NuanceSourceActionController', | '(?P<id>[1-9]\d*)/(?P<path>.*)' => 'NuanceSourceActionController', | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| Show All 17 Lines | |||||