mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-03 20:22:46 +01:00
b3fbf883e0
Summary: Ref T9908. Move all the "pro" stuff into the old locations. Test Plan: Created/edited tasks, looked at URIs, saw non-pro ones. Grepped for `editpro`. Reviewers: chad Reviewed By: chad Maniphest Tasks: T9908 Differential Revision: https://secure.phabricator.com/D14717
15 lines
405 B
PHP
15 lines
405 B
PHP
<?php
|
|
|
|
final class ManiphestTaskEditController extends ManiphestController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
return id(new ManiphestEditEngine())
|
|
->setController($this)
|
|
->addContextParameter('ungrippable')
|
|
->addContextParameter('responseType')
|
|
->addContextParameter('columnPHID')
|
|
->addContextParameter('order')
|
|
->buildResponse();
|
|
}
|
|
|
|
}
|