Commit f0fb37f9 authored by Tristan Cavelier's avatar Tristan Cavelier

revisionstorage.js put method added

parent 7110ea18
......@@ -353,5 +353,17 @@ jIO.addStorageType('revision', function (spec, my) {
f.getDocumentTree();
};
/**
* Update the document metadata and update a document tree.
* Options:
* - {boolean} keep_revision_history To keep the previous revisions
* (false by default) (NYI).
* @method put
* @param {object} command The JIO command
*/
that.put = function (command) {
that.post(command);
};
return that;
});
Markdown is supported
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