mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dataforms: Add support for XEP-0221: Data Forms Media Element
This commit is contained in:
parent
70b5195b4f
commit
ef460cbd97
1 changed files with 9 additions and 0 deletions
|
@ -93,6 +93,15 @@ function form_t.form(layout, data, formtype)
|
|||
end
|
||||
end
|
||||
end
|
||||
|
||||
local media = field.media;
|
||||
if media then
|
||||
form:tag("media", { xmlns = "urn:xmpp:media-element", height = media.height, width = media.width });
|
||||
for _, val in ipairs(media) do
|
||||
form:tag("uri", { type = val.type }):text(val.uri):up()
|
||||
end
|
||||
form:up();
|
||||
end
|
||||
|
||||
if field.required then
|
||||
form:tag("required"):up();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue