Software /
code /
prosody
File
plugins/mod_storage_none.lua @ 6245:8ec4ff630eb4
plugins/muc/mod_muc.lua: Add "each_room" function to iterate over rooms (instead of accessing directly)
author | daurnimator <quae@daurnimator.com> |
---|---|
date | Wed, 30 Apr 2014 13:12:32 -0400 |
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);