aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2016-01-26 15:17:18 +0000
committerDavid Lawrence <dkl@mozilla.com>2016-01-26 15:19:54 +0000
commite5a69b5d218de00d560a2f8ec0577b59e8ce18c8 (patch)
tree74597f46f1b09e2966cde331065c7bf730d148cb /docs
parent5de72e1a092719475396826f94fdcdf4de56d85b (diff)
downloadbugs-e5a69b5d218de00d560a2f8ec0577b59e8ce18c8.tar
bugs-e5a69b5d218de00d560a2f8ec0577b59e8ce18c8.tar.gz
bugs-e5a69b5d218de00d560a2f8ec0577b59e8ce18c8.tar.bz2
bugs-e5a69b5d218de00d560a2f8ec0577b59e8ce18c8.tar.xz
bugs-e5a69b5d218de00d560a2f8ec0577b59e8ce18c8.zip
Bug 1240752 - Attachment data submitted via REST API must always be base64 encoded
r=gerv,a=dkl
Diffstat (limited to 'docs')
-rw-r--r--docs/en/rst/api/core/v1/attachment.rst6
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/en/rst/api/core/v1/attachment.rst b/docs/en/rst/api/core/v1/attachment.rst
index f89b6c23e..70e4c25fd 100644
--- a/docs/en/rst/api/core/v1/attachment.rst
+++ b/docs/en/rst/api/core/v1/attachment.rst
@@ -139,7 +139,7 @@ To create attachment on a current bug:
"comment" : "This is a new attachment comment",
"summary" : "Test Attachment",
"content_type" : "text/plain",
- "data" : "(Some patch content)",
+ "data" : "(Some base64 encoded content)",
"file_name" : "test_attachment.patch",
"obsoletes" : [],
"is_private" : false,
@@ -164,9 +164,7 @@ name type description
**ids** array The IDs or aliases of bugs that you want to add this
attachment to. The same attachment and comment will be
added to all these bugs.
-**data** string The content of the attachment. If the content of the
- attachment is not ASCII text such as
- ``application/octet-stream`` you must encode it in
+**data** base64 The content of the attachment. You must encode it in
base64 using an appropriate client library such as
``MIME::Base64`` for Perl.
**file_name** string The "file name" that will be displayed in the UI for