Correct a parameter order swap in "diffusion.historyquery" for Mercurial
[phabricator.git] / src / applications / ponder / controller / PonderQuestionListController.php
blobf7953cd7377f2afe6db431bf16307782b1b2a123
1 <?php
3 final class PonderQuestionListController extends PonderController {
5 public function shouldAllowPublic() {
6 return true;
9 public function handleRequest(AphrontRequest $request) {
10 $query_key = $request->getURIData('queryKey');
12 $controller = id(new PhabricatorApplicationSearchController())
13 ->setQueryKey($query_key)
14 ->setSearchEngine(new PonderQuestionSearchEngine())
15 ->setNavigation($this->buildSideNavView());
17 return $this->delegateToController($controller);