Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/meta/controller/PhabricatorApplicationsListController.php
12256 views
1
<?php
2
3
final class PhabricatorApplicationsListController
4
extends PhabricatorApplicationsController {
5
6
public function shouldAllowPublic() {
7
return true;
8
}
9
10
public function handleRequest(AphrontRequest $request) {
11
$controller = id(new PhabricatorApplicationSearchController())
12
->setQueryKey($request->getURIData('queryKey'))
13
->setSearchEngine(new PhabricatorAppSearchEngine())
14
->setNavigation($this->buildSideNavView());
15
16
return $this->delegateToController($controller);
17
}
18
19
}
20
21