view util/roster.lua @ 3388:02e668d64e05

MUC: No need to call is_admin twice now, global admins are admins on hosts
author Matthew Wild <mwild1@gmail.com>
date Sat, 17 Jul 2010 15:20:45 +0100
parents 69442c83602e
children
line wrap: on
line source

module "roster"

local roster = {};
roster.__index = roster;

function new()
	return setmetatable({}, roster);
end

function roster:subscribers()
end

function roster:subscriptions()
end

function roster:items()
end

return _M;