diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-04-26 05:39:27 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-04-26 05:39:27 +0100 |
commit | 4b51577e133576fb52fcae3afb46ac98c3dc4cc4 (patch) | |
tree | 0d8baf5372f9addfceb03b23ae4ae6d15981032a /core | |
parent | 2416b4e47b1dc2e04b394138fb38ace0f7e5cc61 (diff) | |
download | prosody-4b51577e133576fb52fcae3afb46ac98c3dc4cc4.tar.gz prosody-4b51577e133576fb52fcae3afb46ac98c3dc4cc4.zip |
moduleapi: Add module:unhook_object_event()
Diffstat (limited to 'core')
-rw-r--r-- | core/moduleapi.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/moduleapi.lua b/core/moduleapi.lua index d16ee410..1f8c492d 100644 --- a/core/moduleapi.lua +++ b/core/moduleapi.lua @@ -73,6 +73,10 @@ function api:hook_object_event(object, event, handler, priority) return object.add_handler(event, handler, priority); end +function api:unhook_object_event(event, handler) + return object.remove_handler(event, handler); +end + function api:hook(event, handler, priority) return self:hook_object_event((hosts[self.host] or prosody).events, event, handler, priority); end |