mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
Roster updates
- Added support for item.ask attribute in rostermanager and mod_roster - Updated roster docs - Removed old code from rostermanager
This commit is contained in:
parent
7bf903298c
commit
869f2859c3
3 changed files with 5 additions and 13 deletions
|
@ -19,6 +19,7 @@ add_iq_handler("c2s", "jabber:iq:roster",
|
|||
roster:tag("item", {
|
||||
jid = jid,
|
||||
subscription = session.roster[jid].subscription,
|
||||
ask = session.roster[jid].ask,
|
||||
name = session.roster[jid].name,
|
||||
});
|
||||
for group in pairs(session.roster[jid].groups) do
|
||||
|
@ -54,6 +55,7 @@ add_iq_handler("c2s", "jabber:iq:roster",
|
|||
if r_item.name == "" then r_item.name = nil; end
|
||||
if session.roster[item.attr.jid] then
|
||||
r_item.subscription = session.roster[item.attr.jid].subscription;
|
||||
r_item.ask = session.roster[item.attr.jid].ask;
|
||||
else
|
||||
r_item.subscription = "none";
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue