Changeset View
Changeset View
Standalone View
Standalone View
src/applications/maniphest/editor/ManiphestEditEngine.php
| Show First 20 Lines • Show All 67 Lines • ▼ Show 20 Lines | protected function buildCustomEditFields($object) { | ||||
| $priority_map = ManiphestTaskPriority::getTaskPriorityMap(); | $priority_map = ManiphestTaskPriority::getTaskPriorityMap(); | ||||
| // TODO: Restore these or toss them: | // TODO: Restore these or toss them: | ||||
| // - Require a single owner. | // - Require a single owner. | ||||
| // - Default owner to viewer. | // - Default owner to viewer. | ||||
| // - Don't show "change status" for closed tasks. | // - Don't show "change status" for closed tasks. | ||||
| // - Don't show "change owner" for closed tasks. | // - Don't show "change owner" for closed tasks. | ||||
| // - Don't let users change a task status to "Duplicate". | // - Don't let users change a task status to "Duplicate". | ||||
| // - Make sure "Quote" works. | |||||
| // - When closing an unassigned task, assign the closing user. | // - When closing an unassigned task, assign the closing user. | ||||
| // - Make sure implicit CCs on actions are working reasonably. | // - Make sure implicit CCs on actions are working reasonably. | ||||
| return array( | return array( | ||||
| id(new PhabricatorTextEditField()) | id(new PhabricatorTextEditField()) | ||||
| ->setKey('title') | ->setKey('title') | ||||
| ->setLabel(pht('Title')) | ->setLabel(pht('Title')) | ||||
| ->setDescription(pht('Name of the task.')) | ->setDescription(pht('Name of the task.')) | ||||
| Show All 39 Lines | |||||