view plugins/mod_storage_none.lua @ 7839:f3e1925f29c2

mod_mam: Update to XEP-0313 v0.5.1
author Kim Alvefur <zash@zash.se>
date Fri, 04 Nov 2016 13:59:49 +0100
parents 7cf6d3a2c855
children 1b35a562528d
line wrap: on
line source

local driver = {};
local driver_mt = { __index = driver };

function driver:open(store, typ)
	if typ and typ ~= "keyval" then
		return nil, "unsupported-store";
	end
	return setmetatable({ store = store, type = typ }, driver_mt);
end
function driver:get(user)
	return {};
end

function driver:set(user, data)
	return nil, "Storage disabled";
end

function driver:stores(username)
	return { "roster" };
end

function driver:purge(user)
	return true;
end

module:provides("storage", driver);