diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-01-24 20:29:25 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-01-24 20:29:25 +0000 |
commit | 9b0ee1a5fb2abb96ef4c34b4ff5043201033984f (patch) | |
tree | a1bcf754fc8780a27f11d37b93dd5789356a0df3 /core | |
parent | f3ccd47096b0e15653254e684d5faa54a508fc1a (diff) | |
download | prosody-9b0ee1a5fb2abb96ef4c34b4ff5043201033984f.tar.gz prosody-9b0ee1a5fb2abb96ef4c34b4ff5043201033984f.zip |
modulemanager: Add module:set_global() as a cleaner way for a module to declare itself 'global'
Diffstat (limited to 'core')
-rw-r--r-- | core/modulemanager.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/modulemanager.lua b/core/modulemanager.lua index 817b5dde..5305e5c6 100644 --- a/core/modulemanager.lua +++ b/core/modulemanager.lua @@ -259,6 +259,10 @@ function api:get_host() return self.host; end +function api:set_global() + self.host = "*"; +end + local function _add_handler(module, origin_type, tag, xmlns, handler) local handlers = stanza_handlers:get(module.host, origin_type, tag, xmlns); local msg = (tag == "iq") and "namespace" or "payload namespace"; |