util/roster.lua

Tue, 20 Jul 2010 17:39:02 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Tue, 20 Jul 2010 17:39:02 +0500
changeset 3393
5b8de0731c4d
parent 3359
69442c83602e
permissions
-rw-r--r--

MUC: Store the nick (full room JID) which set the subject, and send subject to occupants from that JID.

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;

mercurial