Differential D15703 Diff 37846 src/applications/notification/application/PhabricatorNotificationsApplication.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/notification/application/PhabricatorNotificationsApplication.php
| Show All 19 Lines | final class PhabricatorNotificationsApplication extends PhabricatorApplication { | ||||
| public function getRoutes() { | public function getRoutes() { | ||||
| return array( | return array( | ||||
| '/notification/' => array( | '/notification/' => array( | ||||
| '(?:query/(?P<queryKey>[^/]+)/)?' | '(?:query/(?P<queryKey>[^/]+)/)?' | ||||
| => 'PhabricatorNotificationListController', | => 'PhabricatorNotificationListController', | ||||
| 'panel/' => 'PhabricatorNotificationPanelController', | 'panel/' => 'PhabricatorNotificationPanelController', | ||||
| 'individual/' => 'PhabricatorNotificationIndividualController', | 'individual/' => 'PhabricatorNotificationIndividualController', | ||||
| 'status/' => 'PhabricatorNotificationStatusController', | |||||
| 'clear/' => 'PhabricatorNotificationClearController', | 'clear/' => 'PhabricatorNotificationClearController', | ||||
| 'test/' => 'PhabricatorNotificationTestController', | 'test/' => 'PhabricatorNotificationTestController', | ||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| public function isLaunchable() { | public function isLaunchable() { | ||||
| return false; | return false; | ||||
| } | } | ||||
| } | } | ||||