diff options
author | Kim Alvefur <zash@zash.se> | 2019-10-20 23:47:48 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-10-20 23:47:48 +0200 |
commit | 7207a107fd582334d32af3d847ef8e939d136e97 (patch) | |
tree | 93ba9f2e862be50e69f8e550efd4f60f34043b10 /plugins/muc/history.lib.lua | |
parent | 76810faa9b99cc21ef7bf81e272b0ce0c89fe757 (diff) | |
download | prosody-7207a107fd582334d32af3d847ef8e939d136e97.tar.gz prosody-7207a107fd582334d32af3d847ef8e939d136e97.zip |
MUC: Advertise history related fields as integers via XEP-0122
This takes advantage of data type validation and conversion done in util.dataforms.
Diffstat (limited to 'plugins/muc/history.lib.lua')
-rw-r--r-- | plugins/muc/history.lib.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/muc/history.lib.lua b/plugins/muc/history.lib.lua index 0d69c97d..f9ddabbf 100644 --- a/plugins/muc/history.lib.lua +++ b/plugins/muc/history.lib.lua @@ -48,16 +48,18 @@ module:hook("muc-config-form", function(event) table.insert(event.form, { name = "muc#roomconfig_historylength"; type = "text-single"; + datatype = "xs:integer"; label = "Maximum number of history messages returned by room"; desc = "Specify the maximum number of previous messages that should be sent to users when they join the room"; - value = tostring(get_historylength(event.room)); + value = get_historylength(event.room); }); table.insert(event.form, { name = 'muc#roomconfig_defaulthistorymessages', type = 'text-single', + datatype = "xs:integer"; label = 'Default number of history messages returned by room', desc = "Specify the number of previous messages sent to new users when they join the room"; - value = tostring(get_defaulthistorymessages(event.room)) + value = get_defaulthistorymessages(event.room); }); end, 70-5); |