Commit 1597e156 authored by Tristan Cavelier's avatar Tristan Cavelier

Stub methods added to erp5storage

parent 0f223c59
...@@ -326,6 +326,10 @@ ...@@ -326,6 +326,10 @@
}); });
}; };
ERP5Storage.onView["default"].remove = function () {
return;
};
ERP5Storage.onView["default"].allDocs = function (param, options) { ERP5Storage.onView["default"].allDocs = function (param, options) {
if (typeof options.query !== "string") { if (typeof options.query !== "string") {
options.query = (options.query ? options.query = (options.query ?
...@@ -382,6 +386,14 @@ ...@@ -382,6 +386,14 @@
}); });
}; };
ERP5Storage.onView["default"].check = function () {
return;
};
ERP5Storage.onView["default"].repair = function () {
return;
};
jIO.addStorage("erp5", ERP5Storage); jIO.addStorage("erp5", ERP5Storage);
return ERP5Storage; return ERP5Storage;
......
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