diff options
author | Kim Alvefur <zash@zash.se> | 2017-11-09 17:21:50 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-11-09 17:21:50 +0100 |
commit | 30609c4da163329ea3076be8c24cc839b0365c9f (patch) | |
tree | a2f06f49361903e8311e24da1d27a6b6cb49c497 /plugins/mod_pubsub | |
parent | a0a8ef1815389f449abe262fd156cb96fce369e0 (diff) | |
download | prosody-30609c4da163329ea3076be8c24cc839b0365c9f.tar.gz prosody-30609c4da163329ea3076be8c24cc839b0365c9f.zip |
mod_pubsub/archive_itemstore: Support resize operation
Diffstat (limited to 'plugins/mod_pubsub')
-rw-r--r-- | plugins/mod_pubsub/pubsub.lib.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua index ae99167f..3146054e 100644 --- a/plugins/mod_pubsub/pubsub.lib.lua +++ b/plugins/mod_pubsub/pubsub.lib.lua @@ -490,6 +490,11 @@ local function archive_itemstore(archive, config, user, node) function get_set:clear() -- luacheck: ignore 212/self return archive:delete(user); end + function get_set:resize(size) + return archive:delete(user, { + truncate = size; + }); + end function get_set:tail() -- This should conveniently return the last item local item = self:get(nil); |