aboutsummaryrefslogtreecommitdiffstats
path: root/core/rostermanager.lua
diff options
context:
space:
mode:
Diffstat (limited to 'core/rostermanager.lua')
-rw-r--r--core/rostermanager.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/core/rostermanager.lua b/core/rostermanager.lua
index 7a1e7d4e..b31ca21b 100644
--- a/core/rostermanager.lua
+++ b/core/rostermanager.lua
@@ -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