Commit d41b35da authored by Tristan Cavelier's avatar Tristan Cavelier
Browse files

jio putAttachment API changed

// Before:
jio.putAttachment({
  "id": "docid/attmtid",
  "data": "abc",
  "mimetype": "text/plain",
  "rev": "xxxx"
});

// Now:
jio.putAttachment({
  "_id": "docid/attmtid",
  "_data": "abc",
  "_mimetype": "text/plain",
  "_rev": "xxxxx"
});
parent 62bd25fe
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment