diff options
author | mkanat%bugzilla.org <> | 2009-01-09 08:49:36 +0100 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2009-01-09 08:49:36 +0100 |
commit | 4e1a9ffcb681951b2138e0781062d1d559bc8af2 (patch) | |
tree | 2b1348a57514256e893f220b9b49e207dda67f4d /Bugzilla/WebService | |
parent | 9b0a78fbcc3a3c5763e216da6dda8420379701a9 (diff) | |
download | bugzilla-4e1a9ffcb681951b2138e0781062d1d559bc8af2.tar.gz bugzilla-4e1a9ffcb681951b2138e0781062d1d559bc8af2.tar.xz |
Bug 472556: Modify Bug.comments to allow getting comments only comments that have been added since a certain time
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=dkl, a=mkanat
Diffstat (limited to 'Bugzilla/WebService')
-rwxr-xr-x | Bugzilla/WebService/Bug.pm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index 10ea1f886..9d58538f2 100755 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -78,7 +78,7 @@ sub comments { my $bug = Bugzilla::Bug->check($bug_id); # We want the API to always return comments in the same order. my $comments = Bugzilla::Bug::GetComments( - $bug->id, 'oldest_to_newest'); + $bug->id, 'oldest_to_newest', $params->{new_since}); my @result; foreach my $comment (@$comments) { next if $comment->{isprivate} && !$user->is_insider; @@ -439,6 +439,13 @@ C<array> An array of integer comment_ids. These comments will be returned individually, separate from any other comments in their respective bugs. +=item C<new_since> + +C<dateTime> If specified, the method will only return comments I<newer> +than this time. This only affects comments returned from the C<bug_ids> +argument. You will always be returned all comments you request in the +C<comment_ids> argument, even if they are older than this date. + =back =item B<Returns> |