From b340e1d0568ea33d15ff59ff48560e78966121e4 Mon Sep 17 00:00:00 2001 From: Kohei Yoshino Date: Tue, 2 Oct 2018 14:24:06 -0400 Subject: Bug 1263502 - Add duplicates to /rest/bug/id --- Bugzilla/WebService/Bug.pm | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'Bugzilla') diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index d247b8ffb..9003f3480 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -1412,6 +1412,9 @@ sub _bug_to_hash { if (filter_wants $params, 'dupe_of') { $item{'dupe_of'} = $self->type('int', $bug->dup_id); } + if (filter_wants $params, 'duplicates') { + $item{'duplicates'} = [ map { $self->type('int', $_->id) } @{ $bug->duplicates } ]; + } if (filter_wants $params, 'groups') { my @groups = map { $self->type('string', $_->name) } @{ $bug->groups_in }; @@ -2594,6 +2597,10 @@ C of Cs. The ids of bugs that this bug "depends on". C The bug ID of the bug that this bug is a duplicate of. If this bug isn't a duplicate of any bug, this will be null. +=item C + +C of Cs. The ids of bugs that are marked as duplicate of this bug. + =item C C The number of hours that it was estimated that this bug would @@ -2911,6 +2918,8 @@ and all custom fields. =item The C item was added to the C return value in Bugzilla B<4.4>. +=item The C array was added in Bugzilla B<6.0>. + =back =back -- cgit v1.2.3-24-g4f1b