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 | 0bdb7ab1f9104098e894c2acd033bc205081f61a (patch) | |
tree | bc8f7022567cc5611e86b0f5636e9d8f9f35e46f /plugins | |
parent | fb36acd6eeb0316a068acc3ac4dd3584869500b9 (diff) | |
parent | f345e640e57e716ccfd94c3eec2a77670e932936 (diff) | |
download | prosody-0bdb7ab1f9104098e894c2acd033bc205081f61a.tar.gz prosody-0bdb7ab1f9104098e894c2acd033bc205081f61a.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins')
-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); |