From 22807cf1b233f210b91f54a57e854cabde776cfe Mon Sep 17 00:00:00 2001 From: Dave Lawrence Date: Mon, 28 Oct 2013 10:03:03 -0400 Subject: Bug 928410 - Bug.get should return detail about cc list members similar to assigned_to, creator and qa_contact r=gerv,a=glob --- Bugzilla/WebService/Bug.pm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Bugzilla/WebService') diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index 0760503a6..b24b53dfb 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -1060,6 +1060,7 @@ sub _bug_to_hash { if (filter_wants $params, 'cc') { my @cc = map { $self->type('email', $_) } @{ $bug->cc }; $item{'cc'} = \@cc; + $item{'cc_detail'} = [ map { $self->_user_to_hash($_, $params, 'cc') } @{ $bug->cc_users } ]; } if (filter_wants $params, 'creator') { $item{'creator'} = $self->type('email', $bug->reporter->login); @@ -2036,6 +2037,11 @@ C of Cs. The ids of bugs that are "blocked" by this bug. C of Cs. The login names of users on the CC list of this bug. +=item C + +C of hashes containing detailed user information for each of the cc list +members. To see the keys included in the user detail hash, see below. + =item C C The name of the current classification the bug is in. -- cgit v1.2.3-24-g4f1b