From f6a557ec86b0a7cc07c480b65f3548467afaba74 Mon Sep 17 00:00:00 2001 From: Christophe Romain Date: Tue, 11 Dec 2018 11:07:07 +0100 Subject: [PATCH] Add hook on api call --- src/ejabberd_commands.erl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ejabberd_commands.erl b/src/ejabberd_commands.erl index 56a1518e4..eb8c0443d 100644 --- a/src/ejabberd_commands.erl +++ b/src/ejabberd_commands.erl @@ -492,6 +492,7 @@ do_execute_command(Command, Arguments) -> Module = Command#ejabberd_commands.module, Function = Command#ejabberd_commands.function, ?DEBUG("Executing command ~p:~p with Args=~p", [Module, Function, Arguments]), + ejabberd_hooks:run(api_call, [Module, Function, Arguments]), apply(Module, Function, Arguments). -spec get_tags_commands() -> [{string(), [string()]}].