Commit 1e80b30f authored by Romain Courteaud's avatar Romain Courteaud

Missing methods

parent 4095222e
/*jslint nomen: true, maxlen: 200*/
/*global console, RSVP*/
/*global RSVP*/
(function (jIO) {
"use strict";
......@@ -26,6 +26,15 @@
QueryStorage.prototype.remove = function () {
return this._sub_storage.remove.apply(this._sub_storage, arguments);
};
QueryStorage.prototype.getAttachment = function () {
return this._sub_storage.getAttachment.apply(this._sub_storage, arguments);
};
QueryStorage.prototype.putAttachment = function () {
return this._sub_storage.putAttachment.apply(this._sub_storage, arguments);
};
QueryStorage.prototype.removeAttachment = function () {
return this._sub_storage.removeAttachment.apply(this._sub_storage, arguments);
};
/**
* Retrieve documents.
......
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