File

plugins/mod_storage_none.lua @ 6097:538cdc3d8225

plugins/muc/muc.lib: Move (de)construct_stanza_id into `handle_iq_to_occupant` It is the only place they were used; and I left the old function names in as comments. One reason for doing this was to reduce accesses to _occupants; which may be in a database in future revisions
author daurnimator <quae@daurnimator.com>
date Fri, 21 Feb 2014 17:17:01 -0500
parent 5425:b00812c6daf8
child 6283:7cf6d3a2c855
line wrap: on
line source

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

function driver:open(store)
	return setmetatable({ store = store }, 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);