mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
3b0ca7b769
Summary: Starts conversion of Maniphest to handleProcess, chopping up to reduce errors. Test Plan: New Task, Edit Task, Change Priority, Move on workboard, view reports, batch edit tasks Reviewers: epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8628 Differential Revision: https://secure.phabricator.com/D13773
23 lines
570 B
PHP
23 lines
570 B
PHP
<?php
|
|
|
|
final class ManiphestTaskListController
|
|
extends ManiphestController {
|
|
|
|
public function shouldAllowPublic() {
|
|
return true;
|
|
}
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
$querykey = $request->getURIData('queryKey');
|
|
|
|
$controller = id(new PhabricatorApplicationSearchController())
|
|
->setQueryKey($querykey)
|
|
->setSearchEngine(
|
|
id(new ManiphestTaskSearchEngine())
|
|
->setShowBatchControls(true))
|
|
->setNavigation($this->buildSideNavView());
|
|
|
|
return $this->delegateToController($controller);
|
|
}
|
|
|
|
}
|