diff options
author | David Lawrence <dkl@mozilla.com> | 2016-04-04 18:27:33 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2016-04-04 18:27:33 +0200 |
commit | 6be9f0a286b2e9abf0119173a9e66c37a7d9f0a1 (patch) | |
tree | 281e3dd2dac6dbc3f2ec2756e099082cc0d31dc5 /Bugzilla/API | |
parent | 206927e1d3a9fcf73becf83d0376a92a7f0ecd0d (diff) | |
download | bugzilla-6be9f0a286b2e9abf0119173a9e66c37a7d9f0a1.tar.gz bugzilla-6be9f0a286b2e9abf0119173a9e66c37a7d9f0a1.tar.xz |
Bug 880163 - add a webservice method to list a bug's duplicates, mirroring what is visible on show_bug.
r=dylan
Diffstat (limited to 'Bugzilla/API')
-rw-r--r-- | Bugzilla/API/1_0/Resource/Bug.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/API/1_0/Resource/Bug.pm b/Bugzilla/API/1_0/Resource/Bug.pm index 5dc61e8d1..781ac3176 100644 --- a/Bugzilla/API/1_0/Resource/Bug.pm +++ b/Bugzilla/API/1_0/Resource/Bug.pm @@ -1491,6 +1491,9 @@ sub _bug_to_hash { if (filter_wants $params, 'tags', 'extra') { $item{'tags'} = $bug->tags; } + if (filter_wants $params, 'duplicates', 'extra') { + $item{'duplicates'} = [ map { as_int($_->id) } @{ $bug->duplicates } ]; + } # And now custom fields my @custom_fields = Bugzilla->active_custom_fields; |