mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dataforms: Define a integer + "max" datatype
This commit is contained in:
parent
4c922a6d16
commit
351a197fbd
1 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue