diff options
author | Frank Becker <Frank@Frank-Becker.de> | 2011-08-10 00:33:34 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2011-08-10 00:33:34 +0200 |
commit | 2b18077daf30c6c67cf4974b90e9adc79a1658c9 (patch) | |
tree | 4ce5b8ce64aa7a57c79f97eb0b0f326fe9e8c2ba /Bugzilla | |
parent | 72839930451ca44afd7431471654067fa8b19e42 (diff) | |
download | bugzilla-2b18077daf30c6c67cf4974b90e9adc79a1658c9.tar.gz bugzilla-2b18077daf30c6c67cf4974b90e9adc79a1658c9.tar.xz |
Bug 675517: Add "count" to the return value of Bug.comments in the WebService
r=mkanat, a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/WebService/Bug.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index c21c8bbe8..9064f6a14 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -303,6 +303,7 @@ sub _translate_comment { is_private => $self->type('boolean', $comment->is_private), text => $self->type('string', $comment->body_full), attachment_id => $self->type('int', $attach_id), + count => $self->type('int', $comment->count), }; } @@ -1488,6 +1489,11 @@ C<int> The ID of the bug that this comment is on. C<int> If the comment was made on an attachment, this will be the ID of that attachment. Otherwise it will be null. +=item count + +C<int> The number of the comment local to the bug. The Description is 0, +comments start with 1. + =item text C<string> The actual text of the comment. @@ -1543,6 +1549,8 @@ that id. =item In Bugzilla B<4.0>, the C<author> return value was renamed to C<creator>. +=item C<count> was added to the return value in Bugzilla B<5.0>. + =back =back |