]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1234056: The "Create Comments" documentation incorrectly mentions that you can...
authorFrédéric Buclin <LpSolit@gmail.com>
Mon, 21 Dec 2015 15:54:40 +0000 (16:54 +0100)
committerFrédéric Buclin <LpSolit@gmail.com>
Mon, 21 Dec 2015 15:54:40 +0000 (16:54 +0100)
r/a=dkl

docs/en/rst/api/core/v1/comment.rst

index 60fabb93b9c26c65b2ae3fa87d2c9d3a132dbcb2..946cf79fec9d5e680df485e67772ce9b232b2a94 100644 (file)
@@ -122,19 +122,14 @@ To create a comment on a current bug.
 .. code-block:: js
 
    {
-     "ids" : [123,..],
      "comment" : "This is an additional comment",
      "is_private" : false
    }
 
-``ids`` is optional in the data example above and can be used to specify adding
-a comment to more than one bug at the same time.
-
 ===========  =======  ===========================================================
 name         type     description
 ===========  =======  ===========================================================
 **id**       int      The ID or alias of the bug to append a comment to.
-ids          array    List of integer bug IDs to add the comment to.
 **comment**  string   The comment to append to the bug. If this is empty
                       or all whitespace, an error will be thrown saying that you
                       did not set the ``comment`` parameter.