mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_muc_mam: Add mam#extended form fields #1796 (Thanks Rain)
Oversight in cabb022f31c0
This commit is contained in:
parent
4830568435
commit
d0321442c9
1 changed files with 10 additions and 0 deletions
|
@ -109,6 +109,16 @@ local query_form = dataform {
|
|||
{ name = "end"; type = "text-single"; datatype = "xs:dateTime" };
|
||||
};
|
||||
|
||||
if archive.caps and archive.caps.full_id_range then
|
||||
table.insert(query_form, { name = "before-id"; type = "text-single"; });
|
||||
table.insert(query_form, { name = "after-id"; type = "text-single"; });
|
||||
end
|
||||
|
||||
if archive.caps and archive.caps.ids then
|
||||
table.insert(query_form, { name = "ids"; type = "list-multi"; });
|
||||
end
|
||||
|
||||
|
||||
-- Serve form
|
||||
module:hook("iq-get/bare/"..xmlns_mam..":query", function(event)
|
||||
local origin, stanza = event.origin, event.stanza;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue