File

plugins/mod_storage_none.lua @ 5627:0439d1349dc1

mod_disco: Emit events for disco requests, which contain a node, on user accounts
author Florian Zeitz <florob@babelmonkeys.de>
date Fri, 17 May 2013 18:35:50 +0200
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);