Mercurial > prosody-hg
view plugins/mod_storage_none.lua @ 6454:6842b07fc7bc
plugins/muc/muc.lib: Fire muc-occupant-left from other places an occupant may leave the room
| author | daurnimator <quae@daurnimator.com> |
|---|---|
| date | Fri, 26 Sep 2014 17:44:14 -0400 |
| 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);
