Changeset View
Changeset View
Standalone View
Standalone View
src/applications/ponder/application/PhabricatorPonderApplication.php
| Show All 35 Lines | final class PhabricatorPonderApplication extends PhabricatorApplication { | ||||
| } | } | ||||
| public function getRemarkupRules() { | public function getRemarkupRules() { | ||||
| return array( | return array( | ||||
| new PonderRemarkupRule(), | new PonderRemarkupRule(), | ||||
| ); | ); | ||||
| } | } | ||||
| public function isBeta() { | public function isPrototype() { | ||||
| return true; | return true; | ||||
| } | } | ||||
| public function getRoutes() { | public function getRoutes() { | ||||
| return array( | return array( | ||||
| '/Q(?P<id>[1-9]\d*)' => 'PonderQuestionViewController', | '/Q(?P<id>[1-9]\d*)' => 'PonderQuestionViewController', | ||||
| '/ponder/' => array( | '/ponder/' => array( | ||||
| '(?:query/(?P<queryKey>[^/]+)/)?' => 'PonderQuestionListController', | '(?:query/(?P<queryKey>[^/]+)/)?' => 'PonderQuestionListController', | ||||
| Show All 16 Lines | |||||