Differential D14288 Diff 37386 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 85 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( | |||||
| 'circleci/' => 'HarbormasterCircleCIHookController', | |||||
| ), | |||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| protected function getCustomCapabilities() { | protected function getCustomCapabilities() { | ||||
| return array( | return array( | ||||
| HarbormasterCreatePlansCapability::CAPABILITY => array( | HarbormasterCreatePlansCapability::CAPABILITY => array( | ||||
| 'default' => PhabricatorPolicies::POLICY_ADMIN, | 'default' => PhabricatorPolicies::POLICY_ADMIN, | ||||
| Show All 14 Lines | |||||