Page MenuHomePhabricator

D9457.id22574.diff
No OneTemporary

D9457.id22574.diff

diff --git a/src/workflow/ArcanistTodoWorkflow.php b/src/workflow/ArcanistTodoWorkflow.php
--- a/src/workflow/ArcanistTodoWorkflow.php
+++ b/src/workflow/ArcanistTodoWorkflow.php
@@ -37,15 +37,19 @@
return true;
}
-
public function getArguments() {
return array(
'*' => 'summary',
'cc' => array(
- 'param' => 'cc',
- 'short' => 'C',
+ 'param' => 'cc',
+ 'short' => 'C',
+ 'repeat' => true,
+ 'help' => pht('Other users to CC on the new task.'),
+ ),
+ 'project' => array(
+ 'param' => 'project',
'repeat' => true,
- 'help' => 'Other users to CC on the new task.',
+ 'help' => pht('Projects to assign to the task.'),
),
);
}
@@ -53,6 +57,8 @@
public function run() {
$summary = implode(' ', $this->getArgument('summary'));
$ccs = $this->getArgument('cc');
+ $slugs = $this->getArgument('project');
+
$conduit = $this->getConduit();
if (trim($summary) == '') {
@@ -62,7 +68,7 @@
$args = array(
'title' => $summary,
- 'ownerPHID' => $this->getUserPHID()
+ 'ownerPHID' => $this->getUserPHID(),
);
if ($ccs) {
@@ -70,7 +76,7 @@
$users = $conduit->callMethodSynchronous(
'user.query',
array(
- 'usernames' => $ccs
+ 'usernames' => $ccs,
));
foreach ($users as $user => $info) {
$phids[] = $info['phid'];
@@ -78,6 +84,19 @@
$args['ccPHIDs'] = $phids;
}
+ if ($slugs) {
+ $phids = array();
+ $projects = $conduit->callMethodSynchronous(
+ 'project.query',
+ array(
+ 'slugs' => $slugs,
+ ));
+ foreach ($projects as $project => $info) {
+ $phids[] = $info['phid'];
+ }
+ $args['projectPHIDs'] = $phids;
+ }
+
$result = $conduit->callMethodSynchronous(
'maniphest.createtask',
$args);

File Metadata

Mime Type
text/plain
Expires
Wed, Apr 2, 7:37 PM (5 h, 11 m ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7729665
Default Alt Text
D9457.id22574.diff (1 KB)

Event Timeline