Software /
code /
prosody
File
plugins/mod_storage_none.lua @ 7239:c9af793b2d8f
util.xml: Correct stanza.namespaces table construction when duplicate prefix names are encountered in the element tree.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Sat, 05 Mar 2016 17:51:35 -0500 |
parent | 6283:7cf6d3a2c855 |
child | 8058: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);