aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2012-04-26 05:39:27 +0100
committerMatthew Wild <mwild1@gmail.com>2012-04-26 05:39:27 +0100
commit4b51577e133576fb52fcae3afb46ac98c3dc4cc4 (patch)
tree0d8baf5372f9addfceb03b23ae4ae6d15981032a
parent2416b4e47b1dc2e04b394138fb38ace0f7e5cc61 (diff)
downloadprosody-4b51577e133576fb52fcae3afb46ac98c3dc4cc4.tar.gz
prosody-4b51577e133576fb52fcae3afb46ac98c3dc4cc4.zip
moduleapi: Add module:unhook_object_event()
-rw-r--r--core/moduleapi.lua4
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