Changeset View
Changeset View
Standalone View
Standalone View
src/applications/ponder/application/PhabricatorPonderApplication.php
| Show First 20 Lines • Show All 55 Lines • ▼ Show 20 Lines | return array( | ||||
| 'answer/add/' | 'answer/add/' | ||||
| => 'PonderAnswerSaveController', | => 'PonderAnswerSaveController', | ||||
| 'answer/edit/(?P<id>\d+)/' | 'answer/edit/(?P<id>\d+)/' | ||||
| => 'PonderAnswerEditController', | => 'PonderAnswerEditController', | ||||
| 'answer/comment/(?P<id>\d+)/' | 'answer/comment/(?P<id>\d+)/' | ||||
| => 'PonderAnswerCommentController', | => 'PonderAnswerCommentController', | ||||
| 'answer/history/(?P<id>\d+)/' | 'answer/history/(?P<id>\d+)/' | ||||
| => 'PonderAnswerHistoryController', | => 'PonderAnswerHistoryController', | ||||
| 'answer/helpful/(?P<action>add|remove)/(?P<id>[1-9]\d*)/' | |||||
| => 'PonderHelpfulSaveController', | |||||
| 'question/edit/(?:(?P<id>\d+)/)?' | 'question/edit/(?:(?P<id>\d+)/)?' | ||||
| => 'PonderQuestionEditController', | => 'PonderQuestionEditController', | ||||
| 'question/create/' | 'question/create/' | ||||
| => 'PonderQuestionEditController', | => 'PonderQuestionEditController', | ||||
| 'question/comment/(?P<id>\d+)/' | 'question/comment/(?P<id>\d+)/' | ||||
| => 'PonderQuestionCommentController', | => 'PonderQuestionCommentController', | ||||
| 'question/history/(?P<id>\d+)/' | 'question/history/(?P<id>\d+)/' | ||||
| => 'PonderQuestionHistoryController', | => 'PonderQuestionHistoryController', | ||||
| 'preview/' | 'preview/' | ||||
| => 'PhabricatorMarkupPreviewController', | => 'PhabricatorMarkupPreviewController', | ||||
| 'question/status/(?P<id>[1-9]\d*)/' | 'question/status/(?P<id>[1-9]\d*)/' | ||||
| => 'PonderQuestionStatusController', | => 'PonderQuestionStatusController', | ||||
| 'vote/' => 'PonderVoteSaveController', | |||||
| ), | ), | ||||
| ); | ); | ||||
| } | } | ||||
| public function getMailCommandObjects() { | public function getMailCommandObjects() { | ||||
| return array( | return array( | ||||
| 'question' => array( | 'question' => array( | ||||
| 'name' => pht('Email Commands: Questions'), | 'name' => pht('Email Commands: Questions'), | ||||
| Show All 30 Lines | |||||