diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2019-09-29 15:05:17 +0200 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2019-09-29 15:05:17 +0200 |
commit | a0574119d1e1a2a6ec3d759b2a358b634282280a (patch) | |
tree | 3a06a04e85a04e3bb193b04cdaa58b429ac09da1 | |
parent | f869dc1956e95d6c1f7e8c514177608b1a136ae6 (diff) | |
download | prosody-a0574119d1e1a2a6ec3d759b2a358b634282280a.tar.gz prosody-a0574119d1e1a2a6ec3d759b2a358b634282280a.zip |
mod_register_ibr: Add FORM_TYPE as required by XEP-0077.
-rw-r--r-- | plugins/mod_register_ibr.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_register_ibr.lua b/plugins/mod_register_ibr.lua index bbe7581d..e04e6ecd 100644 --- a/plugins/mod_register_ibr.lua +++ b/plugins/mod_register_ibr.lua @@ -25,6 +25,7 @@ end); local account_details = module:open_store("account_details"); local field_map = { + FORM_TYPE = { name = "FORM_TYPE", type = "hidden", value = "jabber:iq:register" }; username = { name = "username", type = "text-single", label = "Username", required = true }; password = { name = "password", type = "text-private", label = "Password", required = true }; nick = { name = "nick", type = "text-single", label = "Nickname" }; @@ -50,6 +51,7 @@ local registration_form = dataform_new{ title = title; instructions = instructions; + field_map.FORM_TYPE; field_map.username; field_map.password; }; |