diff options
author | Kim Alvefur <zash@zash.se> | 2017-04-08 00:48:15 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-04-08 00:48:15 +0200 |
commit | f2f1aa7473e3e9c668a77044c93560e3c914cc50 (patch) | |
tree | bc8f7022567cc5611e86b0f5636e9d8f9f35e46f /plugins/mod_storage_none.lua | |
parent | 5354e5645ec328120cadd24a7dfa7139fd07ec60 (diff) | |
parent | 6b3a33a0835f774ab7e0f021d885b47b7631b7c4 (diff) | |
download | prosody-f2f1aa7473e3e9c668a77044c93560e3c914cc50.tar.gz prosody-f2f1aa7473e3e9c668a77044c93560e3c914cc50.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_storage_none.lua')
-rw-r--r-- | plugins/mod_storage_none.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/mod_storage_none.lua b/plugins/mod_storage_none.lua index 770b2832..e05a0fb7 100644 --- a/plugins/mod_storage_none.lua +++ b/plugins/mod_storage_none.lua @@ -33,4 +33,8 @@ function driver:find() return function () end, 0; end +function driver:delete() + return true; +end + module:provides("storage", driver); |