"Shared roster" - well, kind of :)

+ TODO
This commit is contained in:
matthew 2008-08-24 13:29:01 +00:00
parent b7e9b10cce
commit 86ea5e7911
2 changed files with 14 additions and 1 deletions

6
TODO Normal file
View file

@ -0,0 +1,6 @@
- SASL login support
- Roster manipulation support
- S2S \o/
Further down the line:
- Clustering

View file

@ -15,5 +15,12 @@ local datamanager = datamanager;
module "rostermanager"
function getroster(username, host)
return datamanager.load(username, host, "roster") or {};
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