mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
13 lines
325 B
Lua
13 lines
325 B
Lua
|
|
require "util.datamanager"
|
|
|
|
local datamanager = datamanager;
|
|
local t_insert = table.insert;
|
|
|
|
module "offlinemessage"
|
|
|
|
function new(user, host, stanza)
|
|
local offlinedata = datamanager.load(user, host, "offlinemsg") or {};
|
|
t_insert(offlinedata, stanza);
|
|
return datamanager.store(user, host, "offlinemsg", offlinedata);
|
|
end
|