Software /
code /
prosody
Changeset
8059:6a725b242804
mod_storage_none: Add allways empty archive storage
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 04 Apr 2017 01:31:51 +0200 |
parents | 8058:1b35a562528d |
children | 8060:71bdfdf6565d 8061:ef671d337577 |
files | plugins/mod_storage_none.lua |
diffstat | 1 files changed, 9 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_storage_none.lua Tue Apr 04 01:30:00 2017 +0200 +++ b/plugins/mod_storage_none.lua Tue Apr 04 01:31:51 2017 +0200 @@ -4,7 +4,7 @@ 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 @@ return true; end +function driver:append() + return nil, "Storage disabled"; +end + +function driver:find() + return function () end, 0; +end + module:provides("storage", driver);