Software /
code /
prosody-modules
Comparison
mod_conversejs/mod_conversejs.lua @ 2694:38c66b58b470
mod_conversejs: Pass host jid (needed for anonymous auth)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 18 Apr 2017 04:12:51 +0200 |
parent | 2664:5b97b04e9d1b |
child | 2919:0ea93da47db9 |
comparison
equal
deleted
inserted
replaced
2693:04ae5b45e6c7 | 2694:38c66b58b470 |
---|---|
24 return template:format(json_encode({ | 24 return template:format(json_encode({ |
25 -- debug = true, | 25 -- debug = true, |
26 bosh_service_url = module:http_url("bosh","/http-bind"); | 26 bosh_service_url = module:http_url("bosh","/http-bind"); |
27 websocket_url = has_ws and module:http_url("websocket","xmpp-websocket"):gsub("^http", "ws") or nil; | 27 websocket_url = has_ws and module:http_url("websocket","xmpp-websocket"):gsub("^http", "ws") or nil; |
28 authentication = module:get_option_string("authentication") == "anonymous" and "anonymous" or "login"; | 28 authentication = module:get_option_string("authentication") == "anonymous" and "anonymous" or "login"; |
29 jid = module.host; | |
29 })); | 30 })); |
30 end; | 31 end; |
31 } | 32 } |
32 }); | 33 }); |
33 | 34 |