Differential D20528 Diff 48974 src/applications/doorkeeper/application/PhabricatorDoorkeeperApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/doorkeeper/application/PhabricatorDoorkeeperApplication.php
| Show All 16 Lines | final class PhabricatorDoorkeeperApplication extends PhabricatorApplication { | ||||
| public function getIcon() { | public function getIcon() { | ||||
| return 'fa-recycle'; | return 'fa-recycle'; | ||||
| } | } | ||||
| public function getShortDescription() { | public function getShortDescription() { | ||||
| return pht('Connect to Other Software'); | return pht('Connect to Other Software'); | ||||
| } | } | ||||
| public function getRemarkupRules() { | |||||
| return array( | |||||
| new DoorkeeperAsanaRemarkupRule(), | |||||
| new DoorkeeperJIRARemarkupRule(), | |||||
| ); | |||||
| } | |||||
| public function getRoutes() { | public function getRoutes() { | ||||
| return array( | return array( | ||||
| '/doorkeeper/' => array( | '/doorkeeper/' => array( | ||||
| 'tags/' => 'DoorkeeperTagsController', | 'tags/' => 'DoorkeeperTagsController', | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| } | } | ||||