mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
26 lines
613 B
Lua
26 lines
613 B
Lua
|
|
local mainlog = log;
|
|
local function log(type, message)
|
|
mainlog(type, "rostermanager", message);
|
|
end
|
|
|
|
local setmetatable = setmetatable;
|
|
local format = string.format;
|
|
local loadfile, setfenv, pcall = loadfile, setfenv, pcall;
|
|
|
|
require "util.datamanager"
|
|
|
|
local datamanager = datamanager;
|
|
|
|
module "rostermanager"
|
|
|
|
function getroster(username, host)
|
|
return {
|
|
["mattj@localhost"] = true,
|
|
["tobias@getjabber.ath.cx"] = true,
|
|
["waqas@getjabber.ath.cx"] = true,
|
|
["thorns@getjabber.ath.cx"] = true,
|
|
["idw@getjabber.ath.cx"] = true,
|
|
}
|
|
-- return datamanager.load(username, host, "roster") or {};
|
|
end
|