1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Allow duplicates and merged-in tasks to be queried with edge.search

Summary: See PHI147.

Test Plan: Called the method from the web UI, got sensible results.

Reviewers: amckinley

Reviewed By: amckinley

Differential Revision: https://secure.phabricator.com/D18706
This commit is contained in:
epriestley 2017-10-12 16:26:53 -07:00
parent 3f53718d10
commit acb145b3d7
2 changed files with 29 additions and 0 deletions

View file

@ -13,4 +13,18 @@ final class ManiphestTaskHasDuplicateTaskEdgeType
return true;
}
public function getConduitKey() {
return 'task.merged-in';
}
public function getConduitName() {
return pht('Merged In');
}
public function getConduitDescription() {
return pht(
'The source task has had the destination task closed as a '.
'duplicate and merged into it.');
}
}

View file

@ -13,4 +13,19 @@ final class ManiphestTaskIsDuplicateOfTaskEdgeType
return true;
}
public function getConduitKey() {
return 'task.duplicate';
}
public function getConduitName() {
return pht('Closed as Duplicate');
}
public function getConduitDescription() {
return pht(
'The source task has been closed as a duplicate of the '.
'destination task.');
}
}