aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_storage_none.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-04 01:31:51 +0200
committerKim Alvefur <zash@zash.se>2017-04-04 01:31:51 +0200
commitf94c56040c088f63efdcab886d8ffc311d2e4359 (patch)
tree7cb1f7c91e5c3fdc881fda13d9b5e86fed4b356b /plugins/mod_storage_none.lua
parentaa0ceacdb380321f54f3b1e7a7ff79fb495f7611 (diff)
downloadprosody-f94c56040c088f63efdcab886d8ffc311d2e4359.tar.gz
prosody-f94c56040c088f63efdcab886d8ffc311d2e4359.zip
mod_storage_none: Add allways empty archive storage
Diffstat (limited to 'plugins/mod_storage_none.lua')
-rw-r--r--plugins/mod_storage_none.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/plugins/mod_storage_none.lua b/plugins/mod_storage_none.lua
index f1692cb8..770b2832 100644
--- a/plugins/mod_storage_none.lua
+++ b/plugins/mod_storage_none.lua
@@ -4,7 +4,7 @@ local driver = {};
local driver_mt = { __index = driver };
function driver:open(store, typ)
- if typ and typ ~= "keyval" then
+ if typ and typ ~= "keyval" and typ ~= "archive" then
return nil, "unsupported-store";
end
return setmetatable({ store = store, type = typ }, driver_mt);
@@ -25,4 +25,12 @@ function driver:purge(user)
return true;
end
+function driver:append()
+ return nil, "Storage disabled";
+end
+
+function driver:find()
+ return function () end, 0;
+end
+
module:provides("storage", driver);