Mercurial > prosody-hg
view plugins/mod_storage_none.lua @ 6220:4e7d205f49f7
plugins/muc/muc.lib: Turn get_default_role into an event
| author | daurnimator <quae@daurnimator.com> |
|---|---|
| date | Thu, 03 Apr 2014 18:36:28 -0400 |
| parents | b00812c6daf8 |
| children | 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);
