File

util/roster.lua @ 3393:5b8de0731c4d

MUC: Store the nick (full room JID) which set the subject, and send subject to occupants from that JID.
author Waqas Hussain <waqas20@gmail.com>
date Tue, 20 Jul 2010 17:39:02 +0500
parent 3359:69442c83602e
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;