mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
d53187e10a
Summary: Ref T9908. This fixes "Create Subtask" so it works with the new stuff. Mostly straightforward. Test Plan: Created some subtasks. Reviewers: chad Reviewed By: chad Maniphest Tasks: T9908 Differential Revision: https://secure.phabricator.com/D14706
14 lines
284 B
PHP
14 lines
284 B
PHP
<?php
|
|
|
|
final class PhabricatorHandlesEditField
|
|
extends PhabricatorPHIDListEditField {
|
|
|
|
protected function newControl() {
|
|
return id(new AphrontFormHandlesControl());
|
|
}
|
|
|
|
protected function newHTTPParameterType() {
|
|
return new ManiphestTaskListHTTPParameterType();
|
|
}
|
|
|
|
}
|