# HG changeset patch # User Matthew Wild # Date 1232828965 0 # Node ID 7027de4c039dc09cf963c7dbdfd151015bc5cb05 # Parent 5a343599cd3e68a46a7e22b84dbdd0e0bc5cac42 modulemanager: Add module:set_global() as a cleaner way for a module to declare itself 'global' diff -r 5a343599cd3e -r 7027de4c039d core/modulemanager.lua --- a/core/modulemanager.lua Sat Jan 24 01:15:40 2009 +0000 +++ b/core/modulemanager.lua Sat Jan 24 20:29:25 2009 +0000 @@ -259,6 +259,10 @@ 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";