Software / code / prosody
File
plugins/mod_storage_none.lua @ 5853:3ee3d79db18c
muc.lib.lua: Fix Spark jabber client not displaying conference room lists, seemingly due to a missing value tag for the room description if the description has not been set
| author | Paul <paul@quakenet.org> |
|---|---|
| date | Sat, 05 Oct 2013 17:11:16 +0100 |
| 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);