diff options
author | Christophe Romain <christophe.romain@process-one.net> | 2018-12-11 11:07:07 +0100 |
---|---|---|
committer | Christophe Romain <christophe.romain@process-one.net> | 2018-12-13 14:42:20 +0100 |
commit | 4fcfb38f2a8640ec9dc53700b390760ad6505a4d (patch) | |
tree | d76d3551e4b1d3809d5f506e8c510a8a0409c35b | |
parent | Update version for mix (diff) |
Add hook on api call
-rw-r--r-- | src/ejabberd_commands.erl | 1 |
1 files changed, 1 insertions, 0 deletions
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()]}]. |