util.dataforms: Define a integer + "max" datatype

This commit is contained in:
Kim Alvefur 2020-09-18 12:18:51 +02:00
parent 4c922a6d16
commit 351a197fbd

View file

@ -312,6 +312,15 @@ data_validators["xs:integer"] =
return true, n;
end
data_validators["pubsub:integer-or-max"] =
function (data, field)
if data == "max" then
return true, data;
else
return data_validators["xs:integer"](data, field);
end
end
local function get_form_type(form)
if not st.is_stanza(form) then