diff options
author | Matt Tyson <mtyson@redhat.com> | 2014-04-01 16:33:48 +0800 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-04-01 16:33:48 +0800 |
commit | b6027058e4a8e06ffc252645e5e8b695b0aa2802 (patch) | |
tree | f9da2ffff0c0f78fe4001784d2315f9055ab3712 /Bugzilla | |
parent | 8149a906bb2685ee6c0db80e447c1a9e13ada7f4 (diff) | |
download | bugs-b6027058e4a8e06ffc252645e5e8b695b0aa2802.tar bugs-b6027058e4a8e06ffc252645e5e8b695b0aa2802.tar.gz bugs-b6027058e4a8e06ffc252645e5e8b695b0aa2802.tar.bz2 bugs-b6027058e4a8e06ffc252645e5e8b695b0aa2802.tar.xz bugs-b6027058e4a8e06ffc252645e5e8b695b0aa2802.zip |
Bug 990328: Document that bug tags can be searched by RPC.
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 204e31183..f3ad8591d 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -3054,6 +3054,14 @@ on spaces. So searching for C<foo bar> will match "This is a foo bar" but not "This foo is a bar". C<['foo', 'bar']>, would, however, match the second item. +=item C<tag> + +C<string> Searches for a bug with the specified tag. If you specify an +array, then any bugs that match I<any> of the tags will be returned. + +Note that tags are personal and only bugs belonging to the logged in +user will be returned. + =item C<target_milestone> C<string> The Target Milestone field of a bug. Note that even if this |