Bumper commit for the new modulemanager API \o/ Updates all the modules, though some...
[prosody.git] / core / offlinemessage.lua
1
2 require "util.datamanager"
3
4 local datamanager = datamanager;
5 local t_insert = table.insert;
6
7 module "offlinemessage"
8
9 function new(user, host, stanza)
10         local offlinedata = datamanager.load(user, host, "offlinemsg") or {};
11         t_insert(offlinedata, stanza);
12         return datamanager.store(user, host, "offlinemsg", offlinedata);
13 end
14
15 return _M;