mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
"Shared roster" - well, kind of :)
+ TODO
This commit is contained in:
parent
b7e9b10cce
commit
86ea5e7911
2 changed files with 14 additions and 1 deletions
6
TODO
Normal file
6
TODO
Normal file
|
@ -0,0 +1,6 @@
|
|||
- SASL login support
|
||||
- Roster manipulation support
|
||||
- S2S \o/
|
||||
|
||||
Further down the line:
|
||||
- Clustering
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue