mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-11 08:06:13 +01:00
a13ef20a0c
Summary: Ref T9908. This drives workboard card edits through the new stuff. Bit of copy-paste but the old one will get deleted soon. Test Plan: - Edited some cards. - Changed priority on a priority-sorted board, saw proper re-sort - Removed board project, saw card vanish properly. Reviewers: chad Reviewed By: chad Maniphest Tasks: T9908 Differential Revision: https://secure.phabricator.com/D14712
15 lines
408 B
PHP
15 lines
408 B
PHP
<?php
|
|
|
|
final class ManiphestTaskEditProController extends ManiphestController {
|
|
|
|
public function handleRequest(AphrontRequest $request) {
|
|
return id(new ManiphestEditEngine())
|
|
->setController($this)
|
|
->addContextParameter('ungrippable')
|
|
->addContextParameter('responseType')
|
|
->addContextParameter('columnPHID')
|
|
->addContextParameter('order')
|
|
->buildResponse();
|
|
}
|
|
|
|
}
|