Differential D25005 Diff 32 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 88 Lines • ▼ Show 20 Lines | return array( | ||||
), | ), | ||||
'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( | ||||
'(?P<id>\d+)/' => 'HarbormasterLintMessagesController', | '(?P<id>\d+)/' => 'HarbormasterLintMessagesController', | ||||
), | ), | ||||
'hook/' => array( | 'hook/(?P<handler>[^/]+)/' => 'HarbormasterHookController', | ||||
'circleci/' => 'HarbormasterCircleCIHookController', | |||||
'buildkite/' => 'HarbormasterBuildkiteHookController', | |||||
), | |||||
'log/' => array( | 'log/' => array( | ||||
'view/(?P<id>\d+)/(?:\$(?P<lines>\d+(?:-\d+)?))?' | 'view/(?P<id>\d+)/(?:\$(?P<lines>\d+(?:-\d+)?))?' | ||||
=> 'HarbormasterBuildLogViewController', | => 'HarbormasterBuildLogViewController', | ||||
'render/(?P<id>\d+)/(?:\$(?P<lines>\d+(?:-\d+)?))?' | 'render/(?P<id>\d+)/(?:\$(?P<lines>\d+(?:-\d+)?))?' | ||||
=> 'HarbormasterBuildLogRenderController', | => 'HarbormasterBuildLogRenderController', | ||||
'download/(?P<id>\d+)/' => 'HarbormasterBuildLogDownloadController', | 'download/(?P<id>\d+)/' => 'HarbormasterBuildLogDownloadController', | ||||
), | ), | ||||
), | ), | ||||
Show All 21 Lines |