Mercurial > prosody-hg
view core/offlinemessage.lua @ 131:4bbbc7883ee6
Docs update
- 'ask' property available on roster items
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Thu, 23 Oct 2008 19:53:02 +0500 |
| parents | 0f119bece309 |
| children | cccd610a0ef9 |
line wrap: on
line source
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 return _M;
